| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- class ssoModel extends model
- {
- /**
- * Check Key.
- *
- * @access public
- * @return bool
- */
- public function checkKey()
- {
- if(!isset($this->config->sso->turnon) or !$this->config->sso->turnon) return false;
- if(empty($this->config->sso->key)) return false;
- return $this->get->hash == $this->config->sso->key;
- }
- /**
- * Get bind user.
- *
- * @param string $account
- * @access public
- * @return object|false
- */
- public function getBindUser($account)
- {
- return $this->dao->select('*')->from(TABLE_USER)->where('ranzhi')->eq($account)->andWhere('deleted')->eq('0')->fetch();
- }
- /**
- * Get bind users with ranzhi.
- *
- * @access public
- * @return array
- */
- public function getBindUsers()
- {
- return $this->dao->select('account,ranzhi')->from(TABLE_USER)->where('ranzhi')->ne('')->andWhere('deleted')->eq('0')->fetchPairs('ranzhi', 'account');
- }
- /**
- * Bind user.
- *
- * @access public
- * @return object|false
- */
- public function bind()
- {
- $data = fixer::input('post')->get();
- if($data->bindType == 'bind') return $this->ssoTao->bindZTUser($data);
- if($data->bindType == 'add') return $this->ssoTao->addZTUser($data);
- }
- /**
- * Create a user from ranzhi.
- *
- * @param object $data
- * @access public
- * @return array
- */
- public function createUser($data)
- {
- $user = $this->dao->select('*')->from(TABLE_USER)->where('account')->eq($data->account)->fetch();
- if($user) return array('status' => 'fail', 'data' => $this->lang->sso->bindHasAccount);
- $this->dao->insert(TABLE_USER)->data($data)->autoCheck()->exec();
- if(dao::isError()) return array('status' => 'fail', 'data' => dao::getError());
- return array('status' => 'success', 'id' => $this->dao->lastInsertId());
- }
- }
|