You are here

function simple_fb_connect_login in Simple FB Connect 7

Page callback for the FB Connect URL.

1 string reference to 'simple_fb_connect_login'
simple_fb_connect_menu in ./simple_fb_connect.module
Implements hook_menu().

File

./simple_fb_connect.module, line 47
Simple Facebook Login Module for Drupal Sites.

Code

function simple_fb_connect_login() {
  $facebook = facebook_client();
  $fb_user = $facebook
    ->getUser();
  if ($fb_user) {
    $fb_user_profile = $facebook
      ->api('/me');
    if (isset($fb_user_profile['email'])) {
      $query = db_select('users', 'u');
      $query
        ->condition('u.mail', check_plain($fb_user_profile['email']));
      $query
        ->fields('u', array(
        'uid',
      ));
      $query
        ->range(0, 1);
      $drupal_user_id = 0;
      $result = $query
        ->execute();
      foreach ($result as $record) {
        $drupal_user_id = $record->uid;
      }
      if ($drupal_user_id) {
        $user_obj = user_load($drupal_user_id);
        if ($user_obj->status) {
          $form_state = array();
          $form_state['uid'] = $user_obj->uid;
          user_login_submit(array(), $form_state);
          drupal_set_message(t('You have been logged in with the username !username', array(
            '!username' => $user_obj->name,
          )));
          drupal_goto(variable_get('simple_fb_connect_post_login_url', 'user'));
        }
        else {
          drupal_set_message(t('You could not be logged in as your account is blocked. Contact site administrator.'), 'error');
          drupal_goto('user');
        }
      }
      else {
        if (!variable_get('simple_fb_connect_login_only', 0)) {

          //create the drupal user

          //This will generate a random password, you could set your own here
          $fb_username = isset($fb_user_profile['username']) ? $fb_user_profile['username'] : $fb_user_profile['name'];
          $drupal_username_generated = simple_fb_connect_unique_user_name(check_plain($fb_username));
          $password = user_password(8);

          //set up the user fields
          $fields = array(
            'name' => $drupal_username_generated,
            'mail' => check_plain($fb_user_profile['email']),
            'pass' => $password,
            'status' => 1,
            'init' => 'email address',
            'roles' => array(
              DRUPAL_AUTHENTICATED_RID => 'authenticated user',
            ),
          );
          if (variable_get('user_pictures', 0)) {
            $dimensions_in_text = variable_get('user_picture_dimensions', SIMPLE_FB_CONNECT_DEFAULT_DIMENSIONS_STRING);
            $dimensions = explode('x', $dimensions_in_text);
            if (count($dimensions) == 2) {
              $width = $dimensions[0];
              $height = $dimensions[1];
            }
            else {
              $width = SIMPLE_FB_CONNECT_DEFAULT_WIDTH;
              $height = SIMPLE_FB_CONNECT_DEFAULT_HEIGHT;
            }
            $pic_url = "https://graph.facebook.com/" . check_plain($fb_user_profile['id']) . "/picture?width={$width}&height={$height}";
            $response = drupal_http_request($pic_url);
            $file = 0;
            if ($response->code == 200) {
              $picture_directory = file_default_scheme() . '://' . variable_get('user_picture_path', 'pictures/');
              file_prepare_directory($picture_directory, FILE_CREATE_DIRECTORY);
              $file = file_save_data($response->data, $picture_directory . '/' . check_plain($fb_user_profile['id'] . '.jpg', FILE_EXISTS_RENAME));
            }
            if (is_object($file)) {
              $fields['picture'] = $file->fid;
            }
          }
          drupal_alter("simple_fb_connect_register", $fields, $fb_user_profile);

          //the first parameter is left blank so a new user is created
          $account = user_save('', $fields);

          // If you want to send the welcome email, use the following code
          // Manually set the password so it appears in the e-mail.
          $account->password = $fields['pass'];

          // Send the e-mail through the user module.
          drupal_mail('user', 'register_no_approval_required', $account->mail, NULL, array(
            'account' => $account,
          ), variable_get('site_mail', 'admin@drupalsite.com'));
          drupal_set_message(t('You have been registered with the username !username', array(
            '!username' => $account->name,
          )));
          drupal_goto("user/simple-fb-connect");
        }
        else {
          drupal_set_message(t('There was no account with the email addresse !email found. Please register before trying to login.', array(
            '!email' => check_plain($fb_user_profile['email']),
          )), 'error');
          drupal_goto("user");
        }
      }
    }
    else {
      drupal_set_message(t('Though you have authorised the Facebook app to access your profile, you have revoked the permission to access email address. Please contact site administrator.'), 'error');
      drupal_goto("user");
    }
  }
  else {
    if (!isset($_REQUEST['error'])) {
      if (variable_get('simple_fb_connect_appid', 0)) {
        $scope_string = '';

        // Make sure at least one module implements our hook.
        if (sizeof(module_implements('simple_fb_scope_info')) > 0) {

          // Call modules that implement the hook, and let them change scope.
          $scopes = module_invoke_all('simple_fb_scope_info', array());
          $scope_string = implode(',', $scopes);
        }
        $scope_string .= ',email';
        $login_url_params = array(
          'scope' => $scope_string,
          'fbconnect' => 1,
          'redirect_uri' => 'http://' . $_SERVER['HTTP_HOST'] . request_uri(),
        );
        $login_url = $facebook
          ->getLoginUrl($login_url_params);
        drupal_goto($login_url);
      }
      else {
        drupal_set_message(t('Facebook App ID Missing. Can not perform Login now. Contact Site administrator.'), 'error');
        drupal_goto("user");
      }
    }
    else {
      if ($_REQUEST['error'] == SIMPLE_FB_CONNECT_PERMISSION_DENIED_PARAMETER) {
        drupal_set_message(t('Could not login with facebook. You did not grant permission for this app on facebook to access your email address.'), 'error');
      }
      else {
        drupal_set_message(t('There was a problem in logging in with facebook. Contact site administrator.'), 'error');
      }
      drupal_goto('user');
    }
  }
}