2019-07-17 20:08:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @copyright Copyright (C) 2005-2009 Keyboard Monkeys Ltd. http://www.kb-m.com
|
|
|
|
* @license http://creativecommons.org/licenses/BSD/ BSD License
|
|
|
|
* @author Keyboard Monkey Ltd
|
|
|
|
* @since CommunityID 0.9
|
|
|
|
* @package CommunityID
|
|
|
|
* @packager Keyboard Monkeys
|
|
|
|
*/
|
|
|
|
|
2019-07-17 20:16:19 +00:00
|
|
|
class Users_ManageusersController extends CommunityID_Controller_Action
|
2019-07-17 20:08:50 +00:00
|
|
|
{
|
|
|
|
public function indexAction()
|
|
|
|
{
|
|
|
|
$this->_helper->actionStack('index', 'login', 'users');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deleteAction()
|
|
|
|
{
|
|
|
|
$this->_helper->layout->disableLayout();
|
|
|
|
$this->_helper->viewRenderer->setNeverRender(true);
|
|
|
|
|
|
|
|
$this->targetUser->delete();
|
|
|
|
echo $this->view->translate('User has been deleted successfully');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deleteunconfirmedAction()
|
|
|
|
{
|
2019-07-17 20:16:19 +00:00
|
|
|
$this->_helper->viewRenderer->setNeverRender(true);
|
|
|
|
|
|
|
|
$users = new Users_Model_Users();
|
|
|
|
$users->deleteUnconfirmed($this->_getParam('olderthan'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function sendreminderAction()
|
|
|
|
{
|
|
|
|
$this->_helper->viewRenderer->setNeverRender(true);
|
|
|
|
|
|
|
|
$users = new Users_Model_Users();
|
|
|
|
foreach ($users->getUnconfirmedUsers($this->_getParam('olderthan')) as $user) {
|
|
|
|
$mail = self::getMail($user, $this->view->translate('Community-ID registration reminder'));
|
|
|
|
try {
|
|
|
|
$mail->send();
|
2019-07-17 20:19:00 +00:00
|
|
|
$user->reminders++;
|
|
|
|
$user->save();
|
2019-07-17 20:16:19 +00:00
|
|
|
} catch (Zend_Mail_Protocol_Exception $e) {
|
|
|
|
Zend_Registry::get('logger')->log($e->getMessage(), Zend_Log::ERR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Zend_Mail
|
|
|
|
* @throws Zend_Mail_Protocol_Exception
|
|
|
|
*/
|
2019-07-17 20:19:00 +00:00
|
|
|
public static function getMail(Users_Model_User $user, $subject)
|
2019-07-17 20:16:19 +00:00
|
|
|
{
|
|
|
|
$locale = Zend_Registry::get('Zend_Locale');
|
|
|
|
$localeElements = explode('_', $locale);
|
|
|
|
if (file_exists(APP_DIR . "/resources/$locale/reminder_mail.txt")) {
|
|
|
|
$file = APP_DIR . "/resources/$locale/reminder_mail.txt";
|
|
|
|
} else if (count($localeElements == 2)
|
|
|
|
&& file_exists(APP_DIR . "/resources/".$localeElements[0]."/reminder_mail.txt")) {
|
|
|
|
$file = APP_DIR . "/resources/".$localeElements[0]."/reminder_mail.txt";
|
|
|
|
} else {
|
|
|
|
$file = APP_DIR . "/resources/en/reminder_mail.txt";
|
|
|
|
}
|
|
|
|
|
|
|
|
$emailTemplate = file_get_contents($file);
|
|
|
|
$emailTemplate = str_replace('{userName}', $user->getFullName(), $emailTemplate);
|
|
|
|
|
|
|
|
$currentUrl = Zend_OpenId::selfURL();
|
|
|
|
preg_match('#(.*)/manageusers/sendreminder#', $currentUrl, $matches);
|
|
|
|
$emailTemplate = str_replace('{registrationURL}', $matches[1] . '/register/eula?token=' . $user->token, $emailTemplate);
|
|
|
|
|
|
|
|
// can't use $this-_config 'cause it's a static function
|
|
|
|
$configEmail = Zend_Registry::get('config')->email;
|
|
|
|
|
|
|
|
switch (strtolower($configEmail->transport)) {
|
|
|
|
case 'smtp':
|
|
|
|
Zend_Mail::setDefaultTransport(
|
|
|
|
new Zend_Mail_Transport_Smtp(
|
|
|
|
$configEmail->host,
|
|
|
|
$configEmail->toArray()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case 'mock':
|
|
|
|
Zend_Mail::setDefaultTransport(new Zend_Mail_Transport_Mock());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Zend_Mail::setDefaultTransport(new Zend_Mail_Transport_Sendmail());
|
|
|
|
}
|
|
|
|
|
|
|
|
$mail = new Zend_Mail('UTF-8');
|
|
|
|
$mail->setBodyText($emailTemplate);
|
|
|
|
$mail->setFrom($configEmail->supportemail);
|
|
|
|
$mail->addTo($user->email);
|
|
|
|
$mail->setSubject($subject);
|
|
|
|
|
|
|
|
return $mail;
|
2019-07-17 20:08:50 +00:00
|
|
|
}
|
|
|
|
}
|