コード例 #1
0
ファイル: PcUser.php プロジェクト: ntemple/intelli-plancake
 /**
  * @param string $plainPassword - the plain password to set
  */
 public function setPassword($plainPassword)
 {
     $salt = PcUtils::generateRandomString(12);
     $this->setSalt($salt);
     parent::setEncryptedPassword(PcUtils::createEncryptedPassword($plainPassword, $salt));
     return $this;
 }
コード例 #2
0
 /**
  *
  * @param int $userId
  * @param string $description (='') - the description of the use
  * @return boolean - false is the user has got a personal api key already, true otherwise
  */
 public static function createPersonalApiApp($userId, $description = '')
 {
     $alreadyExisting = is_object(self::retrieveByUserId($userId));
     if ($alreadyExisting) {
         return false;
     }
     $apiKey = '';
     $safetyCounter = 0;
     // to avoid infinite loop under any circumstances
     do {
         $apiKey = PcUtils::generate40CharacterRandomHash();
         $c = new Criteria();
         $c->add(PcApiAppPeer::API_KEY, $apiKey);
         $alreadyExisting = PcApiAppPeer::doSelectOne($c);
         $safetyCounter++;
         if ($safetyCounter == 100) {
             throw new Exception("Detected possible infinite loop while creating API key");
         }
     } while (is_object($alreadyExisting));
     $personalApiApp = new PcApiApp();
     $personalApiApp->setUserId($userId)->setName('personal')->setApiKey($apiKey)->setApiSecret(PcUtils::generateRandomString(16))->setIsLimited(true)->setDescription($description)->save();
     $apiKeyStats = new PcApiAppStats();
     $apiKeyStats->setApiAppId($personalApiApp->getId())->setToday(date('Y-m-d'))->setLastHour(date('H'))->save();
     $userKey = PcUserKeyPeer::retrieveByPK($userId);
     if (!is_object($userKey)) {
         $userKey = new PcUserKey();
         $userKey->setUserId($userId)->setKey(PcUtils::generate32CharacterRandomHash())->save();
     }
     return true;
 }
コード例 #3
0
 public function executeDeleteAccount(sfWebRequest $request)
 {
     $user = PcUserPeer::getLoggedInUser();
     $this->form = new DeleteAccountForm();
     $reasons = $this->form->getReasons();
     $fields = array();
     if ($request->isMethod('post')) {
         $this->form->bind($request->getParameter('deleteAccount'));
         if ($this->form->isValid()) {
             $fields = $request->getParameter('deleteAccount');
             $message = $reasons[$fields['reason']] . "\n XX \n" . $fields['info'];
             $to = sfConfig::get('app_emailAddress_contact');
             // we need to add a 'random' code otherwise GMail groups all of them together
             $subject = 'Account deletion ' . date('YmdHis');
             PcUtils::sendEmail($to, $subject, $message, $to, PcUserPeer::getLoggedInUser()->getEmail());
             $emailAddressForDeletedAccounts = 'deleted_' . PcUtils::generateRandomString(32) . '@plancake.com';
             $user->setEmail($emailAddressForDeletedAccounts)->save();
             sfContext::getInstance()->getEventDispatcher()->notify(new sfEvent('userSetEmail', 'user.set_email', array('user' => $user)));
             CustomAuth::logout($this->getUser());
             $this->redirect(sfContext::getInstance()->getController()->genUrl('@homepage'));
         }
     }
     $this->user = $user;
 }