Files
thetempusproject/app/controllers/usercp.php
2024-12-05 15:34:36 -05:00

113 lines
4.6 KiB
PHP

<?php
/**
* app/controllers/usercp.php
*
* This is the user control panel controller.
*
* @version 3.0
* @author Joey Kimsey <Joey@thetempusproject.com>
* @link https://TheTempusProject.com
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
*/
namespace TheTempusProject\Controllers;
use TheTempusProject\Houdini\Classes\Template;
use TheTempusProject\Classes\Email;
use TheTempusProject\Bedrock\Functions\Code;
use TheTempusProject\Bedrock\Functions\Check;
use TheTempusProject\Bedrock\Functions\Input;
use TheTempusProject\Bedrock\Functions\Hash;
use TheTempusProject\Houdini\Classes\Components;
use TheTempusProject\Houdini\Classes\Views;
use TheTempusProject\Houdini\Classes\Issues;
use TheTempusProject\Houdini\Classes\Navigation;
use TheTempusProject\TheTempusProject as App;
use TheTempusProject\Classes\Controller;
use TheTempusProject\Classes\Preferences;
use TheTempusProject\Classes\Forms;
use TheTempusProject\Hermes\Functions\Redirect;
use TheTempusProject\Bedrock\Functions\Session;
class Usercp extends Controller {
public function __construct() {
parent::__construct();
if ( !App::$isLoggedIn ) {
Session::flash( 'notice', 'You must be logged in to view this page!' );
Redirect::home();
}
Template::noIndex();
$menu = Views::simpleView( 'nav.usercp', App::$userCPlinks );
Navigation::activePageSelect( $menu, null, true, true );
}
public function email() {
self::$title = 'Email Settings';
if ( App::$activeUser->confirmed != '1' ) {
return Issues::add( 'notice', 'You need to confirm your email address before you can make modifications. If you would like to resend that confirmation link, please <a href="{BASE}register/resend">click here</a>', true );
}
if ( !Input::exists() ) {
return Views::view( 'user_cp.email_change' );
}
if ( !Forms::check( 'changeEmail' ) ) {
Issues::add( 'error', [ 'There was an error with your request.' => Check::userErrors() ] );
return Views::view( 'user_cp.email_change' );
}
$code = Code::genConfirmation();
self::$user->update(
App::$activeUser->ID,
[
'confirmed' => 0,
'email' => Input::post( 'email' ),
'confirmationCode' => $code,
],
);
Email::send( App::$activeUser->email, 'emailChangeNotice', $code, [ 'template' => true ] );
Email::send( Input::post( 'email' ), 'emailChange', $code, [ 'template' => true ] );
Issues::add( 'notice', 'Email has been changed, please check your email to confirm it.' );
}
public function index() {
self::$title = 'User Control Panel';
Views::view( 'profile', App::$activeUser );
}
public function password() {
self::$title = 'Password Settings';
if ( !Input::exists() ) {
return Views::view( 'user_cp.password_change' );
}
if ( !Hash::check( Input::post( 'curpass' ), App::$activeUser->password ) ) {
Issues::add( 'error', 'Current password was incorrect.' );
return Views::view( 'user_cp.password_change' );
}
if ( !Forms::check( 'changePassword' ) ) {
Issues::add( 'error', [ 'There was an error with your request.' => Check::userErrors() ] );
return Views::view( 'user_cp.password_change' );
}
self::$user->update(
App::$activeUser->ID,
[ 'password' => Hash::make( Input::post( 'password' ) ) ],
);
Email::send( App::$activeUser->email, 'passwordChange', null, [ 'template' => true ] );
Issues::add( 'notice', 'Your Password has been changed!' );
}
public function settings() {
self::$title = 'Preferences';
$prefs = new Preferences;
$fields = App::$activePrefs;
if ( Input::exists( 'submit' ) ) {
$fields = $prefs->convertFormToArray( true, false );
// @TODO now i may need to rework the form checker to work with this....
// if (!Forms::check('userPrefs')) {
// Issues::add( 'error', [ 'There was an error with your request.' => Check::userErrors() ] );
// }
self::$user->updatePrefs( $fields, App::$activeUser->ID );
Issues::add( 'success', 'Your preferences have been updated.' );
}
Components::set( 'AVATAR_SETTINGS', $fields['avatar'] );
Components::set( 'PREFERENCES_FORM', $prefs->getFormHtml( $fields ) );
Views::view( 'user_cp.settings', App::$activeUser );
}
}