2015-04-02 13:24:05 +00:00
|
|
|
<?php
|
2016-02-03 22:22:56 +00:00
|
|
|
/**
|
|
|
|
* Holds various functions to interface with users.
|
2016-02-05 11:20:33 +00:00
|
|
|
*
|
2016-02-03 22:22:56 +00:00
|
|
|
* @package Sakura
|
|
|
|
*/
|
|
|
|
|
2015-04-02 13:24:05 +00:00
|
|
|
namespace Sakura;
|
|
|
|
|
2015-12-29 21:52:19 +00:00
|
|
|
use Sakura\Perms\Site;
|
2016-03-19 15:29:47 +00:00
|
|
|
use Sakura\Router;
|
2015-12-29 21:52:19 +00:00
|
|
|
|
2015-10-18 19:06:30 +00:00
|
|
|
/**
|
2016-02-02 21:04:15 +00:00
|
|
|
* User management
|
2016-02-05 11:20:33 +00:00
|
|
|
*
|
2015-10-18 19:06:30 +00:00
|
|
|
* @package Sakura
|
2016-02-02 21:04:15 +00:00
|
|
|
* @author Julian van de Groep <me@flash.moe>
|
2015-10-18 19:06:30 +00:00
|
|
|
*/
|
2015-09-14 20:51:23 +00:00
|
|
|
class Users
|
|
|
|
{
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Send password forgot e-mail
|
2016-02-05 11:20:33 +00:00
|
|
|
*
|
2016-03-19 15:29:47 +00:00
|
|
|
* @param string $userId The user id.
|
2016-02-02 21:04:15 +00:00
|
|
|
* @param string $email The e-mail.
|
|
|
|
*/
|
2016-03-19 15:29:47 +00:00
|
|
|
public static function sendPasswordForgot($userId, $email)
|
2015-09-14 20:51:23 +00:00
|
|
|
{
|
2016-03-19 15:29:47 +00:00
|
|
|
$user = User::construct($userId);
|
2015-12-29 21:52:19 +00:00
|
|
|
|
2016-03-19 15:29:47 +00:00
|
|
|
if (!$user->id || $user->permission(Site::DEACTIVATED)) {
|
|
|
|
return;
|
2015-09-05 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2015-04-25 20:08:44 +00:00
|
|
|
// Generate the verification key
|
2016-03-19 15:29:47 +00:00
|
|
|
$verk = ActionCode::generate('LOST_PASS', $user->id);
|
2015-04-25 20:08:44 +00:00
|
|
|
|
2016-03-19 15:29:47 +00:00
|
|
|
$siteName = Config::get('sitename');
|
|
|
|
$baseUrl = "http://" . Config::get('url_main');
|
|
|
|
$reactivateLink = Router::route('auth.resetpassword') . "?u={$user->id}&k={$verk}";
|
|
|
|
$signature = Config::get('mail_signature');
|
2015-09-05 16:11:04 +00:00
|
|
|
|
2015-04-25 20:08:44 +00:00
|
|
|
// Build the e-mail
|
2016-03-19 15:29:47 +00:00
|
|
|
$message = "Hello {$user->username},\r\n\r\n"
|
|
|
|
. "You are receiving this notification because you have (or someone pretending to be you has)"
|
|
|
|
. " requested a password reset link to be sent for your account on \"{$siteName}\"."
|
|
|
|
. " If you did not request this notification then please ignore it,"
|
|
|
|
. " if you keep receiving it please contact the site administrator.\r\n\r\n"
|
|
|
|
. "To use this password reset key you need to go to a special page."
|
|
|
|
. " To do this click the link provided below.\r\n\r\n"
|
|
|
|
. "{$baseUrl}{$reactivateLink}\r\n\r\n"
|
|
|
|
. "If successful you should be able to change your password here.\r\n\r\n"
|
|
|
|
. "You can of course change this password yourself via the settings page."
|
|
|
|
. " If you have any difficulties please contact the site administrator.\r\n\r\n"
|
|
|
|
. "--\r\n\r\nThanks\r\n\r\n{$signature}";
|
2015-04-25 20:08:44 +00:00
|
|
|
|
|
|
|
// Send the message
|
2016-03-19 15:29:47 +00:00
|
|
|
Utils::sendMail([$user->email => $user->username], "{$siteName} password restoration", $message);
|
2015-04-21 14:23:28 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Send activation e-mail.
|
2016-02-05 11:20:33 +00:00
|
|
|
*
|
2016-03-19 15:29:47 +00:00
|
|
|
* @param mixed $userId User ID.
|
2016-02-02 21:04:15 +00:00
|
|
|
* @param mixed $customKey Key.
|
|
|
|
*/
|
2016-03-19 15:29:47 +00:00
|
|
|
public static function sendActivationMail($userId, $customKey = null)
|
2015-09-14 20:51:23 +00:00
|
|
|
{
|
2015-04-18 18:26:52 +00:00
|
|
|
|
|
|
|
// Get the user data
|
2016-03-19 15:29:47 +00:00
|
|
|
$user = User::construct($userId);
|
2015-04-18 18:26:52 +00:00
|
|
|
|
|
|
|
// User is already activated or doesn't even exist
|
2016-01-17 01:58:31 +00:00
|
|
|
if (!$user->id || !$user->permission(Site::DEACTIVATED)) {
|
2016-03-19 15:29:47 +00:00
|
|
|
return;
|
2015-09-05 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2015-04-18 18:26:52 +00:00
|
|
|
// Generate activation key
|
2016-01-17 01:58:31 +00:00
|
|
|
$activate = ActionCode::generate('ACTIVATE', $user->id);
|
2015-04-18 18:26:52 +00:00
|
|
|
|
2016-03-19 15:29:47 +00:00
|
|
|
$siteName = Config::get('sitename');
|
|
|
|
$baseUrl = "http://" . Config::get('url_main');
|
|
|
|
$activateLink = Router::route('auth.activate') . "?u={$user->id}&k={$activate}";
|
|
|
|
$profileLink = Router::route('user.profile', $user->id);
|
|
|
|
$signature = Config::get('mail_signature');
|
2015-09-05 16:11:04 +00:00
|
|
|
|
2015-04-18 18:26:52 +00:00
|
|
|
// Build the e-mail
|
2016-03-19 15:29:47 +00:00
|
|
|
$message = "Welcome to {$siteName}!\r\n\r\n"
|
|
|
|
. "Please keep this e-mail for your records. Your account intormation is as follows:\r\n\r\n"
|
|
|
|
. "----------------------------\r\n\r\n"
|
|
|
|
. "Username: {$user->username}\r\n\r\n"
|
|
|
|
. "Your profile: {$baseUrl}{$profileLink}\r\n\r\n"
|
|
|
|
. "----------------------------\r\n\r\n"
|
|
|
|
. "Please visit the following link in order to activate your account:\r\n\r\n"
|
|
|
|
. "{$baseUrl}{$activateLink}\r\n\r\n"
|
|
|
|
. "Your password has been securely stored in our database and cannot be retrieved. "
|
|
|
|
. "In the event that it is forgotten,"
|
|
|
|
. " you will be able to reset it using the email address associated with your account.\r\n\r\n"
|
|
|
|
. "Thank you for registering.\r\n\r\n"
|
|
|
|
. "--\r\n\r\nThanks\r\n\r\n{$signature}";
|
2015-04-18 18:26:52 +00:00
|
|
|
|
|
|
|
// Send the message
|
2016-03-19 15:29:47 +00:00
|
|
|
Utils::sendMail([$user->email => $user->username], "{$siteName} activation mail", $message);
|
2015-04-18 18:26:52 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Get all available profile fields.
|
2016-02-05 11:20:33 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @return array|null The fields.
|
|
|
|
*/
|
2015-09-14 20:51:23 +00:00
|
|
|
public static function getProfileFields()
|
|
|
|
{
|
2015-06-27 11:03:11 +00:00
|
|
|
// Get profile fields
|
2016-03-13 20:35:51 +00:00
|
|
|
$profileFields = DB::table('profilefields')
|
|
|
|
->get();
|
2015-06-27 11:03:11 +00:00
|
|
|
|
|
|
|
// If there's nothing just return null
|
2015-09-14 20:51:23 +00:00
|
|
|
if (!count($profileFields)) {
|
2015-06-27 11:03:11 +00:00
|
|
|
return null;
|
2015-09-05 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2015-06-27 11:03:11 +00:00
|
|
|
// Create output array
|
|
|
|
$fields = [];
|
|
|
|
|
|
|
|
// Iterate over the fields and clean them up
|
2015-09-14 20:51:23 +00:00
|
|
|
foreach ($profileFields as $field) {
|
2016-03-13 20:35:51 +00:00
|
|
|
$field = get_object_vars($field);
|
2015-10-10 21:17:50 +00:00
|
|
|
$fields[$field['field_id']] = $field;
|
2016-01-17 01:58:31 +00:00
|
|
|
$fields[$field['field_id']]['field_identity'] = Utils::cleanString($field['field_name'], true, true);
|
2015-10-10 21:17:50 +00:00
|
|
|
$fields[$field['field_id']]['field_additional'] = json_decode($field['field_additional'], true);
|
2015-06-27 11:03:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the yeahs
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Get all available option fields.
|
2016-02-05 11:20:33 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @return array|null The fields.
|
|
|
|
*/
|
2015-09-14 20:51:23 +00:00
|
|
|
public static function getOptionFields()
|
|
|
|
{
|
2015-08-21 22:07:45 +00:00
|
|
|
// Get option fields
|
2016-03-13 20:35:51 +00:00
|
|
|
$optionFields = DB::table('optionfields')
|
|
|
|
->get();
|
2015-08-21 22:07:45 +00:00
|
|
|
|
|
|
|
// If there's nothing just return null
|
2015-09-14 20:51:23 +00:00
|
|
|
if (!count($optionFields)) {
|
2015-08-21 22:07:45 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create output array
|
|
|
|
$fields = [];
|
|
|
|
|
2015-12-29 21:52:19 +00:00
|
|
|
$user = User::construct(self::checkLogin()[0]);
|
|
|
|
|
2015-08-21 22:07:45 +00:00
|
|
|
// Iterate over the fields and clean them up
|
2015-09-14 20:51:23 +00:00
|
|
|
foreach ($optionFields as $field) {
|
2016-03-13 20:35:51 +00:00
|
|
|
$field = get_object_vars($field);
|
|
|
|
|
2015-12-29 21:52:19 +00:00
|
|
|
if (!$user->permission(constant('Sakura\Perms\Site::' . $field['option_permission']))) {
|
2015-08-21 22:07:45 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-10-10 21:17:50 +00:00
|
|
|
$fields[$field['option_id']] = $field;
|
2015-08-21 22:07:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the yeahs
|
|
|
|
return $fields;
|
|
|
|
}
|
2015-04-02 13:24:05 +00:00
|
|
|
}
|