Exemplo n.º 1
0
 public function user_by_username($value, $args, $context, ResolveInfo $info)
 {
     /*$user = array(
           'auth' => array(),
           'profile' => array(),
       );
       $user_auth = UserAuthModel::getAuthByUsername($args['username_like']);
       if ($user_auth) {
           $user['auth'] = $user_auth->toArray();
           $user_profile = UserProfileModel::getProfile($user_auth->id);
           $user['profile'] = $user_profile->toArray();
       }*/
     $user = array();
     $user_auth = UserAuthModel::getAuthByUsername($args['username_like']);
     if ($user_auth) {
         $user = $user_auth->toArray();
         $user_profile = UserProfileModel::getProfile($user_auth->id);
         if ($user_profile) {
             $user += $user_profile->toArray();
         }
         if (!isset($user['avatar']) || empty($user['avatar'])) {
             // todo
             $user['avatar'] = 'http://cdn.tachigo.com/user/img/avatar.gif';
         }
     }
     return $user;
 }
Exemplo n.º 2
0
 public function __invoke()
 {
     /** @var \Tachigo\User\Aware\Component\UserAwareHook $hook */
     $hook = $this->getHook();
     if ($hook instanceof UserLoginFieldsHook) {
         // 如果是用户登录字段配置的钩子
         $hook_results = $hook->getResults();
         $results = array('fields' => array('username' => array('element' => 'input', 'type' => 'text', 'placeholder' => '请输入用户名', 'label' => '用户名'), 'password' => array('element' => 'input', 'type' => 'password', 'placeholder' => '请输入密码', 'label' => '密码'), 'remember' => array('element' => 'input', 'type' => 'checkbox', 'label' => '下次自动登录')));
         $hook->setResults(array_merge($hook_results, $results));
     } elseif ($hook instanceof UserLoginHook) {
         $request = $this->getRequest();
         $session = $this->getSession();
         $posts = $request->request;
         try {
             $username = $posts->get('username');
             $password = $posts->get('password');
             $remember = $posts->get('remember');
             if (!$username) {
                 throw new \Exception('请输入用户名');
             }
             if (!$password) {
                 throw new \Exception('请输入密码');
             }
             $user_auth = UserAuthModel::getAuthByUsername($username);
             if (!$user_auth) {
                 throw new \Exception('用户不存在');
             }
             if ($user_auth->password != md5($password)) {
                 throw new \Exception('密码错误');
             }
             $user_auth->loginTimestamp = time();
             // 保存
             $user_auth = UserAuthModel::saveAuth($user_auth);
             $session['auth'] = $user_auth;
             $session['profile'] = $this->getUserProfile($user_auth->id);
             // 下次自动登录
             if ($remember) {
             }
         } catch (\Exception $e) {
             throw $e;
         }
     }
 }
Exemplo n.º 3
0
 public function __invoke()
 {
     $request = $this->getRequest();
     if ($request->getMethod() == 'POST') {
         $session = $this->getSession();
         $posts = $request->request;
         try {
             $username = $posts->get('username');
             $password = $posts->get('password');
             $remember = $posts->get('remember');
             if (!$username) {
                 throw new \Exception('请输入用户名');
             }
             if (!$password) {
                 throw new \Exception('请输入密码');
             }
             $user_auth = UserAuthModel::getAuthByUsername($username);
             if (!$user_auth) {
                 throw new \Exception('用户不存在');
             }
             if ($user_auth->password != md5($password)) {
                 throw new \Exception('密码错误');
             }
             $user_auth->loginTimestamp = time();
             // 保存
             $user_auth = UserAuthModel::saveAuth($user_auth);
             $session['auth'] = $user_auth;
             $session['profile'] = $this->getUserProfile($user_auth->id);
             // 下次自动登录
             if ($remember) {
             }
             // 登录成功
             $session->addFlash('success', '欢迎回来');
             return new RedirectResponse($this->generateUrl('user_homepage'));
         } catch (\Exception $e) {
             $session->addFlash('error', $e->getMessage());
             return new RedirectResponse($this->generateUrl('user_login'));
         }
     }
     return $this->render('passport/login.html.twig');
 }
Exemplo n.º 4
0
 public function __invoke()
 {
     /** @var \Tachigo\User\Aware\Component\UserAwareHook $hook */
     $hook = $this->getHook();
     if ($hook instanceof UserRegisterFieldsHook) {
         // 如果是用户登录字段配置的钩子
         $hook_results = $hook->getResults();
         $results = array('fields' => array('username' => array('element' => 'input', 'type' => 'text', 'placeholder' => '请输入用户名', 'label' => '用户名'), 'password' => array('element' => 'input', 'type' => 'password', 'placeholder' => '请输入密码', 'label' => '密码'), 'confirm_password' => array('element' => 'input', 'type' => 'password', 'placeholder' => '请输入密码', 'label' => '确认密码'), 'nickname' => array('element' => 'input', 'type' => 'text', 'placeholder' => '请输入昵称', 'label' => '昵称')));
         $hook->setResults(array_merge($hook_results, $results));
     } elseif ($hook instanceof UserRegisterHook) {
         $request = $this->getRequest();
         $session = $this->getSession();
         $posts = $request->request;
         $db = UserDatabase::getDb();
         try {
             $db->transaction();
             $username = $posts->get('username');
             $password = $posts->get('password');
             $confirm_password = $posts->get('confirm_password');
             $nickname = $posts->get('nickname');
             // 检查
             if (!$username) {
                 throw new \Exception('用户名不能为空');
             }
             if (strlen($username) < 2) {
                 throw new \Exception('用户名至少2位字符');
             }
             if (!$password) {
                 throw new \Exception('密码不能为空');
             }
             if (strlen($password) < 6) {
                 throw new \Exception('密码至少6位字符');
             }
             if ($password != $confirm_password) {
                 throw new \Exception('密码不一致');
             }
             if (!$nickname) {
                 throw new \Exception('昵称不能为空');
             }
             if (strlen($nickname) < 2) {
                 throw new \Exception('昵称至少2个字符');
             }
             // 检查重复
             $user_auth = UserAuthModel::getAuthByUsername($username);
             if ($user_auth) {
                 throw new \Exception('用户名已被占用,请重新选择');
             }
             // 创建用户
             $user_auth = new UserAuthModel();
             $user_auth->username = $username;
             $user_auth->password = md5($password);
             $now = time();
             $user_auth->createTimestamp = $now;
             $user_auth->updateTimestamp = $now;
             $user_auth->loginTimestamp = $now;
             $user_auth->status = 1;
             // 保存
             $user_auth = UserAuthModel::createAuth($user_auth);
             $user_profile = $this->getUserProfile($user_auth->id);
             $user_profile->nickname = $nickname;
             $user_profile = UserProfileModel::saveProfile($user_profile);
             $db->commit();
             $session['auth'] = $user_auth;
             $session['profile'] = $user_profile;
         } catch (\Exception $e) {
             $db->rollback();
             throw $e;
         }
     }
 }
Exemplo n.º 5
0
 public function __invoke()
 {
     $request = $this->getRequest();
     if ($request->getMethod() == 'POST') {
         $posts = $request->request;
         $session = $this->getSession();
         $db = UserDatabase::getDb();
         try {
             $db->transaction();
             $username = $posts->get('username');
             $password = $posts->get('password');
             $repeat_password = $posts->get('repeat_password');
             $nickname = $posts->get('nickname');
             // 检查
             if (!$username) {
                 throw new \Exception('用户名不能为空');
             }
             if (strlen($username) < 2) {
                 throw new \Exception('用户名至少2位字符');
             }
             if (!$password) {
                 throw new \Exception('密码不能为空');
             }
             if (strlen($password) < 6) {
                 throw new \Exception('密码至少6位字符');
             }
             if ($password != $repeat_password) {
                 throw new \Exception('密码不一致');
             }
             if (!$nickname) {
                 throw new \Exception('昵称不能为空');
             }
             if (strlen($nickname) < 2) {
                 throw new \Exception('昵称至少2个字符');
             }
             // 检查重复
             $user_auth = UserAuthModel::getAuthByUsername($username);
             if ($user_auth) {
                 throw new \Exception('用户名已被占用,请重新选择');
             }
             // 创建用户
             $user_auth = new UserAuthModel();
             $user_auth->username = $username;
             $user_auth->password = md5($password);
             $now = time();
             $user_auth->createTimestamp = $now;
             $user_auth->updateTimestamp = $now;
             $user_auth->loginTimestamp = $now;
             $user_auth->status = 1;
             // 保存
             $user_auth = UserAuthModel::createAuth($user_auth);
             $user_profile = $this->getUserProfile($user_auth->id);
             $user_profile->nickname = $nickname;
             $user_profile = UserProfileModel::saveProfile($user_profile);
             $db->commit();
             $session['auth'] = $user_auth;
             $session['profile'] = $user_profile;
             $session->addFlash('success', '注册成功');
             // 重定向到完善资料
             return new RedirectResponse($this->generateUrl('user_homepage'));
         } catch (\Exception $e) {
             $db->rollback();
             $session->addFlash('error', $e->getMessage());
             return new RedirectResponse($this->generateUrl('user_register'));
         }
     }
     return $this->render('passport/register.html.twig');
 }
Exemplo n.º 6
0
 protected function handle()
 {
     $request = $this->getRequest();
     if ($request->getMethod() == 'POST') {
         $posts = $request->request;
         $session = $this->getSession();
         try {
             $username = $posts->get('username');
             $email = $posts->get('email');
             $mobile = $posts->get('mobile');
             $password = $posts->get('password');
             $confirm_password = $posts->get('confirm_password');
             if (!$username) {
                 throw new \Exception('用户名不能为空');
             }
             if (strlen($username) < 2) {
                 throw new \Exception('用户名至少2个字符');
             }
             // 检查重复
             $user = UserAuthModel::getAuthByUsername($username);
             if ($user) {
                 throw new \Exception('用户名已被占用');
             }
             if (!$email) {
                 throw new \Exception('邮箱不能为空');
             }
             if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
                 throw new \Exception('邮箱地址格式错误');
             }
             // 检查重复
             $user = UserAuthModel::getAuthByEmail($email);
             if ($user) {
                 throw new \Exception('邮箱已被占用');
             }
             if (!$mobile) {
                 throw new \Exception('手机号不能为空');
             }
             // 检查重复
             $user = UserAuthModel::getAuthByMobile($mobile);
             if ($user) {
                 throw new \Exception('手机号已被占用');
             }
             // 密码
             if (!$password) {
                 throw new \Exception('密码不能为空');
             }
             if (strlen($password) < 6) {
                 throw new \Exception('密码至少6位字符');
             }
             if (!$confirm_password) {
                 throw new \Exception('确认密码不能为空');
             }
             if ($password != $confirm_password) {
                 throw new \Exception('密码与确认密码不一致');
             }
             // 创建
             $auth = new UserAuthModel();
             $auth->username = $username;
             $auth->email = $email;
             $auth->mobile = $mobile;
             $auth->password = md5($password);
             $now = time();
             $auth->createTimestamp = $now;
             $auth->updateTimestamp = $now;
             // 后台添加的为可用状态
             $auth->status = UserAuthModel::STATUS_OK;
             // 保存
             UserAuthModel::createAuth($auth);
             $session->addFlash('success', '操作成功');
         } catch (\Exception $e) {
             $session->addFlash('error', $e->getMessage());
         }
         return new RedirectResponse($this->generateUrl('admin_user_index'));
     }
     return $this->render('user/add.html.twig');
 }