deprecated global/information, closes #29
This commit is contained in:
parent
cae6f22d37
commit
c3a80ca7f9
12 changed files with 335 additions and 267 deletions
|
@ -22,7 +22,7 @@ class ActionCode
|
||||||
public static function generate(string $action, int $user = 0): string
|
public static function generate(string $action, int $user = 0): string
|
||||||
{
|
{
|
||||||
// Generate a code
|
// Generate a code
|
||||||
$code = uniqid();
|
$code = bin2hex(random_bytes(8));
|
||||||
|
|
||||||
// Insert it
|
// Insert it
|
||||||
DB::table('actioncodes')
|
DB::table('actioncodes')
|
||||||
|
|
|
@ -37,6 +37,23 @@ class AuthController extends Controller
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function authenticate(User $user): void
|
||||||
|
{
|
||||||
|
// Generate a session key
|
||||||
|
$session = CurrentSession::create(
|
||||||
|
$user->id,
|
||||||
|
Net::ip(),
|
||||||
|
get_country_code(),
|
||||||
|
clean_string($_SERVER['HTTP_USER_AGENT'] ?? '')
|
||||||
|
);
|
||||||
|
|
||||||
|
$cookiePrefix = config('cookie.prefix');
|
||||||
|
setcookie("{$cookiePrefix}id", $user->id, time() + 604800, '/');
|
||||||
|
setcookie("{$cookiePrefix}session", $session->key, time() + 604800, '/');
|
||||||
|
|
||||||
|
$this->touchRateLimit($user->id, true);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* End the current session.
|
* End the current session.
|
||||||
* @throws HttpMethodNotAllowedException
|
* @throws HttpMethodNotAllowedException
|
||||||
|
@ -99,19 +116,7 @@ class AuthController extends Controller
|
||||||
return $this->json(['error' => "Your account isn't activated, check your e-mail!"]);
|
return $this->json(['error' => "Your account isn't activated, check your e-mail!"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate a session key
|
$this->authenticate($user);
|
||||||
$session = CurrentSession::create(
|
|
||||||
$user->id,
|
|
||||||
Net::ip(),
|
|
||||||
get_country_code(),
|
|
||||||
clean_string($_SERVER['HTTP_USER_AGENT'] ?? '')
|
|
||||||
);
|
|
||||||
|
|
||||||
$cookiePrefix = config('cookie.prefix');
|
|
||||||
setcookie("{$cookiePrefix}id", $user->id, time() + 604800, '/');
|
|
||||||
setcookie("{$cookiePrefix}session", $session->key, time() + 604800, '/');
|
|
||||||
|
|
||||||
$this->touchRateLimit($user->id, true);
|
|
||||||
|
|
||||||
$msg = ['error' => null];
|
$msg = ['error' => null];
|
||||||
|
|
||||||
|
@ -124,78 +129,52 @@ class AuthController extends Controller
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Do a registration attempt.
|
* Do a registration attempt.
|
||||||
|
* @throws HttpMethodNotAllowedException
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function register(): string
|
public function register(): string
|
||||||
{
|
{
|
||||||
// Preliminarily set registration to failed
|
if (!session_check()) {
|
||||||
$redirect = route('auth.register');
|
return view('auth/register', compact('registered_username'));
|
||||||
|
}
|
||||||
|
|
||||||
// Check if authentication is disallowed
|
// Check if authentication is disallowed
|
||||||
if (config('user.disable_registration')) {
|
if (config('user.disable_registration')) {
|
||||||
$message = 'Registration is disabled for security checkups! Try again later.';
|
return $this->json(['error' => 'Registration is currently disabled.']);
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!session_check()) {
|
|
||||||
// Attempt to check if a user has already registered from the current IP
|
|
||||||
$getUserIP = DB::table('users')
|
|
||||||
->where('register_ip', Net::pton(Net::ip()))
|
|
||||||
->orWhere('last_ip', Net::pton(Net::ip()))
|
|
||||||
->get();
|
|
||||||
|
|
||||||
$vars = [];
|
|
||||||
|
|
||||||
if ($getUserIP) {
|
|
||||||
$vars = [
|
|
||||||
'haltRegistration' => count($getUserIP) > 1,
|
|
||||||
'haltName' => $getUserIP[array_rand($getUserIP)]->username,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
return view('auth/register', $vars);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Grab forms
|
|
||||||
$username = $_POST['username'] ?? null;
|
$username = $_POST['username'] ?? null;
|
||||||
$password = $_POST['password'] ?? null;
|
$password = $_POST['password'] ?? null;
|
||||||
$email = $_POST['email'] ?? null;
|
$email = $_POST['email'] ?? null;
|
||||||
|
|
||||||
// Append username and email to the redirection url
|
|
||||||
$redirect .= "?username={$username}&email={$email}";
|
|
||||||
|
|
||||||
// Attempt to get account data
|
// Attempt to get account data
|
||||||
$user = User::construct(clean_string($username, true, true));
|
$user = User::construct(clean_string($username, true, true));
|
||||||
|
|
||||||
// Check if the username already exists
|
// Check if the username already exists
|
||||||
if ($user && $user->id !== 0) {
|
if ($user && $user->id !== 0) {
|
||||||
$message = "{$user->username} is already a member here!"
|
$message = "{$user->username} is already a member here!"
|
||||||
. " If this is you please use the password reset form instead of making a new account.";
|
. "\r\nIf this is you please use the password reset form instead of making a new account.";
|
||||||
return view('global/information', compact('message', 'redirect'));
|
return $this->json(['error' => $message]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Username too short
|
// Username too short
|
||||||
if (strlen($username) < config('user.name_min')) {
|
if (strlen($username) < config('user.name_min')) {
|
||||||
$message = 'Your name must be at least 3 characters long.';
|
return $this->json(['error' => 'Your name must be at least 3 characters long.']);
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Username too long
|
// Username too long
|
||||||
if (strlen($username) > config('user.name_max')) {
|
if (strlen($username) > config('user.name_max')) {
|
||||||
$message = 'Your name can\'t be longer than 16 characters.';
|
return $this->json(['error' => "Your name can't be longer than 16 characters."]);
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the given email address is formatted properly
|
// Check if the given email address is formatted properly
|
||||||
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
||||||
$message = 'Your e-mail address is formatted incorrectly.';
|
return $this->json(['error' => 'Your e-mail address is formatted incorrectly.']);
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check the MX record of the email
|
// Check the MX record of the email
|
||||||
if (!check_mx_record($email)) {
|
if (!check_mx_record($email)) {
|
||||||
$message = 'No valid MX-Record found on the e-mail address you supplied.';
|
return $this->json(['error' => 'No valid MX-Record found on the e-mail address you supplied.']);
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the e-mail has already been used
|
// Check if the e-mail has already been used
|
||||||
|
@ -203,122 +182,81 @@ class AuthController extends Controller
|
||||||
->where('email', $email)
|
->where('email', $email)
|
||||||
->count();
|
->count();
|
||||||
if ($emailCheck) {
|
if ($emailCheck) {
|
||||||
$message = 'Someone already registered using this email!';
|
return $this->json(['error' => 'Someone already registered using this email!']);
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check password entropy
|
// Check password entropy
|
||||||
if (password_entropy($password) < config('user.pass_min_entropy')) {
|
if (password_entropy($password) < config('user.pass_min_entropy')) {
|
||||||
$message = 'Your password is too weak, try adding some special characters.';
|
return $this->json([
|
||||||
return view('global/information', compact('message', 'redirect'));
|
'error' => 'Your password is considered too weak, try adding some special characters.'
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
$requireActive = boolval(config('user.require_activation'));
|
$activation = boolval(config('user.require_activation'));
|
||||||
$user = User::create($username, $password, $email, !$requireActive);
|
$user = User::create($username, $password, $email, !$activation);
|
||||||
|
|
||||||
// Check if we require e-mail activation
|
// Check if we require e-mail activation
|
||||||
if ($requireActive) {
|
if ($activation) {
|
||||||
|
$message = 'Almost there, only activation is left! Please check your e-mail for the link.';
|
||||||
$this->sendActivationMail($user);
|
$this->sendActivationMail($user);
|
||||||
|
} else {
|
||||||
|
$this->authenticate($user);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return true with a specific message if needed
|
return $this->json(['text' => $message ?? null, 'go' => route('main.index')]);
|
||||||
$redirect = route('main.index');
|
|
||||||
$message = 'Your registration went through!';
|
|
||||||
$message .= $requireActive ? ' An activation e-mail has been sent.' : ' Welcome to ' . config('general.name') . '!';
|
|
||||||
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Do a activation attempt.
|
* Do a (re)activation attempt.
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function activate(): string
|
public function activate(): string
|
||||||
{
|
{
|
||||||
// Preliminarily set activation to failed
|
// activation link handler
|
||||||
$redirect = route('main.index');
|
if (isset($_GET['u'], $_GET['k'])) {
|
||||||
|
$user = User::construct($_GET['u'] ?? null);
|
||||||
|
|
||||||
// Attempt to get the required GET parameters
|
if ($user->id === 0
|
||||||
$userId = $_GET['u'] ?? 0;
|
|| $user->activated
|
||||||
$key = $_GET['k'] ?? "";
|
|| !ActionCode::validate('ACTIVATE', $_GET['k'] ?? null, $user->id)) {
|
||||||
|
return view('auth/activate_failed');
|
||||||
|
}
|
||||||
|
|
||||||
// Attempt to create a user object
|
DB::table('users')
|
||||||
$user = User::construct($userId);
|
->where('user_id', $user->id)
|
||||||
|
->update(['user_activated' => 1]);
|
||||||
|
|
||||||
// Quit if the user ID is 0
|
$this->authenticate($user);
|
||||||
if ($user->id === 0) {
|
|
||||||
$message = "This user does not exist! Contact us if you think this isn't right.";
|
return redirect(route('main.index'));
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the user is already active
|
// resend handler
|
||||||
if ($user->activated) {
|
if (session_check() && isset($_POST['username'], $_POST['email'])) {
|
||||||
$message = "Your account is already activated! Why are you here?";
|
$id = DB::table('users')
|
||||||
return view('global/information', compact('message', 'redirect'));
|
->where('username_clean', clean_string($_POST['username'], true))
|
||||||
|
->where('email', clean_string($_POST['email'], true))
|
||||||
|
->value('user_id');
|
||||||
|
|
||||||
|
if (!$id) {
|
||||||
|
return $this->json(['error' => "Couldn't find this username/e-mail combination, double check them!"]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$user = User::construct($id);
|
||||||
|
|
||||||
|
if ($user->activated) {
|
||||||
|
return $this->json(['error' => 'Your account is already activated! Why are you here?', 'go' => route('main.index')]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->sendActivationMail($user);
|
||||||
|
|
||||||
|
return $this->json([
|
||||||
|
'text' => "The e-mail should be on its way, don't forget to also check your spam folder!",
|
||||||
|
'go' => route('main.index')
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate the activation key
|
return view('auth/activate');
|
||||||
$action = ActionCode::validate('ACTIVATE', $key, $user->id);
|
|
||||||
|
|
||||||
if (!$action) {
|
|
||||||
$message = "Invalid activation code! Contact us if you think this isn't right.";
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
|
||||||
|
|
||||||
DB::table('users')
|
|
||||||
->where('user_id', $userId)
|
|
||||||
->update(['user_activated' => 1]);
|
|
||||||
|
|
||||||
$redirect = route('main.index');
|
|
||||||
$message = "Your account is activated, welcome to " . config('general.name') . "!";
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Do a reactivation preparation attempt.
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function reactivate(): string
|
|
||||||
{
|
|
||||||
// Validate session
|
|
||||||
if (!session_check()) {
|
|
||||||
return view('auth/reactivate');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Preliminarily set registration to failed
|
|
||||||
$redirect = route('auth.reactivate');
|
|
||||||
|
|
||||||
// Grab forms
|
|
||||||
$username = isset($_POST['username']) ? clean_string($_POST['username'], true) : null;
|
|
||||||
$email = isset($_POST['email']) ? clean_string($_POST['email'], true) : null;
|
|
||||||
|
|
||||||
// Do database request
|
|
||||||
$getUser = DB::table('users')
|
|
||||||
->where('username_clean', $username)
|
|
||||||
->where('email', $email)
|
|
||||||
->get(['user_id']);
|
|
||||||
|
|
||||||
// Check if user exists
|
|
||||||
if (!$getUser) {
|
|
||||||
$message = "User not found! Double check your username and e-mail address!";
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create user object
|
|
||||||
$user = User::construct($getUser[0]->user_id);
|
|
||||||
|
|
||||||
// Check if a user is activated
|
|
||||||
if ($user->activated) {
|
|
||||||
$message = "Your account is already activated! Why are you here?";
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Send activation e-mail to user
|
|
||||||
$this->sendActivationMail($user);
|
|
||||||
|
|
||||||
$redirect = route('main.index');
|
|
||||||
$message = "Sent the e-mail! Make sure to check your spam folder as well!";
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -327,64 +265,54 @@ class AuthController extends Controller
|
||||||
*/
|
*/
|
||||||
public function resetPassword(): string
|
public function resetPassword(): string
|
||||||
{
|
{
|
||||||
// Validate session
|
if (session_check()) {
|
||||||
if (!session_check()) {
|
$userId = $_POST['user'] ?? 0;
|
||||||
return view('auth/resetpassword');
|
$key = $_POST['key'] ?? "";
|
||||||
}
|
$password = $_POST['password'] ?? "";
|
||||||
|
$userName = clean_string($_POST['username'] ?? "", true);
|
||||||
|
$email = clean_string($_POST['email'] ?? "", true);
|
||||||
|
$user = User::construct($userId ? $userId : $userName);
|
||||||
|
|
||||||
// Preliminarily set action to failed
|
if ($user->id === 0 || (strlen($email) > 0 ? $email !== $user->email : false)) {
|
||||||
$redirect = route('main.index');
|
return $this->json(['error' => "This user does not exist! Contact us if you think this isn't right."]);
|
||||||
|
|
||||||
// Attempt to get the various required GET parameters
|
|
||||||
$userId = $_POST['user'] ?? 0;
|
|
||||||
$key = $_POST['key'] ?? "";
|
|
||||||
$password = $_POST['password'] ?? "";
|
|
||||||
$userName = clean_string($_POST['username'] ?? "", true);
|
|
||||||
$email = clean_string($_POST['email'] ?? "", true);
|
|
||||||
|
|
||||||
// Create user object
|
|
||||||
$user = User::construct($userId ? $userId : $userName);
|
|
||||||
|
|
||||||
// Quit if the user ID is 0
|
|
||||||
if ($user->id === 0 || ($email !== null ? $email !== $user->email : false)) {
|
|
||||||
$message = "This user does not exist! Contact us if you think this isn't right.";
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if the user is active
|
|
||||||
if (!$user->activated) {
|
|
||||||
$message = "Your account is deactivated, go activate it first...";
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($key && $password) {
|
|
||||||
// Check password entropy
|
|
||||||
if (password_entropy($password) < config('user.pass_min_entropy')) {
|
|
||||||
$message = "Your password doesn't meet the strength requirements!";
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate the activation key
|
if (!$user->activated) {
|
||||||
$action = ActionCode::validate('LOST_PASS', $key, $user->id);
|
return $this->json([
|
||||||
|
'error' => "Your account isn't activated, go activate it first...",
|
||||||
if (!$action) {
|
'go' => route('auth.activate'),
|
||||||
$message = "Invalid verification code! Contact us if you think this isn't right.";
|
]);
|
||||||
return view('global/information', compact('message', 'redirect'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$user->setPassword($password);
|
if ($key && $password) {
|
||||||
|
if (password_entropy($password) < config('user.pass_min_entropy')) {
|
||||||
|
return $this->json(['error' => "Your password doesn't meet the strength requirements!"]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$action = ActionCode::validate('LOST_PASS', $key, $user->id);
|
||||||
|
|
||||||
|
if (!$action) {
|
||||||
|
return $this->json(['error' => "Invalid verification code! Contact us if you think this isn't right."]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$user->setPassword($password);
|
||||||
|
$this->authenticate($user);
|
||||||
|
|
||||||
|
return $this->json([
|
||||||
|
'text' => "Changed your password!",
|
||||||
|
'go' => route('main.index'),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
$message = "Changed your password! You may now log in.";
|
|
||||||
$redirect = route('main.index');
|
|
||||||
} else {
|
|
||||||
// Send the e-mail
|
|
||||||
$this->sendPasswordMail($user);
|
$this->sendPasswordMail($user);
|
||||||
|
|
||||||
$message = "Sent the e-mail, keep an eye on your spam folder as well!";
|
return $this->json([
|
||||||
$redirect = route('main.index');
|
'text' => "The e-mail should be on its way, don't forget to also check your spam folder!",
|
||||||
|
'go' => route('main.index'),
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
return view('global/information', compact('message', 'redirect'));
|
return view('auth/resetpassword');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -8,6 +8,7 @@ namespace Sakura\Controllers\Settings;
|
||||||
|
|
||||||
use Phroute\Phroute\Exception\HttpMethodNotAllowedException;
|
use Phroute\Phroute\Exception\HttpMethodNotAllowedException;
|
||||||
use Sakura\CurrentSession;
|
use Sakura\CurrentSession;
|
||||||
|
use Sakura\DB;
|
||||||
use Sakura\Session;
|
use Sakura\Session;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -34,7 +34,7 @@ class UserController extends Controller
|
||||||
if ($profile->id === 0) {
|
if ($profile->id === 0) {
|
||||||
// Fetch from username_history
|
// Fetch from username_history
|
||||||
$check = DB::table('username_history')
|
$check = DB::table('username_history')
|
||||||
->where('username_old_clean', clean_string($id, true, true))
|
->where('username_old_clean', clean_string($id, true))
|
||||||
->orderBy('change_id', 'desc')
|
->orderBy('change_id', 'desc')
|
||||||
->first();
|
->first();
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ class UserController extends Controller
|
||||||
public function resolve(string $name): string
|
public function resolve(string $name): string
|
||||||
{
|
{
|
||||||
$id = DB::table('users')
|
$id = DB::table('users')
|
||||||
->where('username_clean', clean_string($name, true, true))
|
->where('username_clean', clean_string($name, true))
|
||||||
->value('user_id');
|
->value('user_id');
|
||||||
|
|
||||||
if (!$id) {
|
if (!$id) {
|
||||||
|
|
68
resources/views/yuuno/auth/activate.twig
Normal file
68
resources/views/yuuno/auth/activate.twig
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
{% extends 'master.twig' %}
|
||||||
|
|
||||||
|
{% set title = 'Request activation' %}
|
||||||
|
|
||||||
|
{% block js %}
|
||||||
|
<script>
|
||||||
|
function yuunoAttemptActivationResend(form) {
|
||||||
|
var client = new Sakura.AJAX,
|
||||||
|
sndBtn = Sakura.DOM.ID('snd-btn');
|
||||||
|
|
||||||
|
sndBtn.disabled = true;
|
||||||
|
sndBtn.innerHTML = '<i class="fa fa-spinner fa-spin"></i>';
|
||||||
|
Sakura.DOM.AddClass(sndBtn, ['input__button--disabled']);
|
||||||
|
|
||||||
|
client.SetUrl("{{ route('auth.activate') }}");
|
||||||
|
client.SetFormData(new FormData(form));
|
||||||
|
client.AddCallback(200, function () {
|
||||||
|
sndBtn.disabled = false;
|
||||||
|
sndBtn.innerHTML = '<i class="fa fa-envelope"></i> Resend e-mail';
|
||||||
|
Sakura.DOM.RemoveClass(sndBtn, ['input__button--disabled']);
|
||||||
|
|
||||||
|
var result = client.JSON();
|
||||||
|
|
||||||
|
if (result.error || result.text) {
|
||||||
|
var dialogue = new Sakura.Dialogue;
|
||||||
|
dialogue.Title = "Request activation";
|
||||||
|
dialogue.Text = result.error || result.text;
|
||||||
|
dialogue.AddCallback(Sakura.DialogueButton.Ok, function () {
|
||||||
|
this.Close();
|
||||||
|
|
||||||
|
if (result.go) {
|
||||||
|
window.location.assign(result.go);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
dialogue.Display();
|
||||||
|
} else if (result.go) {
|
||||||
|
window.location.assign(result.go);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
client.Start(Sakura.HTTPMethod.POST);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="auth content content--auth">
|
||||||
|
<div class="content__header">
|
||||||
|
Request activation
|
||||||
|
</div>
|
||||||
|
<form method="post" action="javascript:void(0)" onsubmit="yuunoAttemptActivationResend(this)">
|
||||||
|
<input type="hidden" name="session" value="{{ session_id() }}">
|
||||||
|
<label>
|
||||||
|
<div class="auth__label">Username</div>
|
||||||
|
<input class="input__text" type="text" name="username" autofocus placeholder="The username you signed up with">
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<div class="auth__label">E-mail</div>
|
||||||
|
<input class="input__text" type="text" name="email" placeholder="The e-mail you signed up with">
|
||||||
|
</label>
|
||||||
|
<button class="input__button auth__button" id="snd-btn">
|
||||||
|
<i class="fa fa-envelope"></i> Resend e-mail
|
||||||
|
</button>
|
||||||
|
<div class="auth__subtext">
|
||||||
|
If you lost access to your e-mail account, <a href="{{ route('info.contact') }}">please contact us</a>.
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
24
resources/views/yuuno/auth/activate_failed.twig
Normal file
24
resources/views/yuuno/auth/activate_failed.twig
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{% extends 'master.twig' %}
|
||||||
|
|
||||||
|
{% set title = 'Activation failed' %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="auth content content--auth">
|
||||||
|
<div class="content__header">
|
||||||
|
Activation failed
|
||||||
|
</div>
|
||||||
|
<div style="text-align: left; padding: 10px">
|
||||||
|
<p>Something went wrong while trying to activate your account!</p>
|
||||||
|
<p>This can be caused by the following things:</p>
|
||||||
|
<ul style="padding-left: 20px; list-style: square">
|
||||||
|
<li>Your account has been deleted in the time it took you to activate (+30 days).</li>
|
||||||
|
<li>Your account is already activated. In which case, why are you even here?</li>
|
||||||
|
<li>Your activation code somehow got invalidated. <a href="{{ route('info.contact') }}">Contact us</a> if you think this is the case.</li>
|
||||||
|
</ul>
|
||||||
|
<p>Or alternatively...</p>
|
||||||
|
</div>
|
||||||
|
<a class="input__button auth__button" href="{{ route('auth.activate') }}">
|
||||||
|
<i class="fa fa-repeat"></i> Resend activation e-mail
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
|
@ -1,24 +0,0 @@
|
||||||
{% extends 'master.twig' %}
|
|
||||||
|
|
||||||
{% set title = 'Reactivate account' %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<div class="auth content content--auth">
|
|
||||||
<div class="content__header">
|
|
||||||
Reactivate account
|
|
||||||
</div>
|
|
||||||
<form method="post" action="{{ route('auth.reactivate') }}">
|
|
||||||
<label>
|
|
||||||
<div class="auth__label">Username</div>
|
|
||||||
<input class="input__text" type="text" name="username" autofocus>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<div class="auth__label">E-mail</div>
|
|
||||||
<input class="input__text" type="text" name="email">
|
|
||||||
</label>
|
|
||||||
<button class="input__button auth__button" name="session" value="{{ session_id() }}">
|
|
||||||
Request Activation
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
|
@ -2,38 +2,79 @@
|
||||||
|
|
||||||
{% set title = 'Register' %}
|
{% set title = 'Register' %}
|
||||||
|
|
||||||
|
{% block js %}
|
||||||
|
<script>
|
||||||
|
function yuunoAttemptRegistration(form) {
|
||||||
|
var client = new Sakura.AJAX,
|
||||||
|
regBtn = Sakura.DOM.ID('reg-btn');
|
||||||
|
|
||||||
|
regBtn.disabled = true;
|
||||||
|
regBtn.innerHTML = '<i class="fa fa-spinner fa-spin"></i>';
|
||||||
|
Sakura.DOM.AddClass(regBtn, ['input__button--disabled']);
|
||||||
|
|
||||||
|
client.SetUrl("{{ route('auth.register') }}");
|
||||||
|
client.SetFormData(new FormData(form));
|
||||||
|
client.AddCallback(200, function () {
|
||||||
|
regBtn.disabled = false;
|
||||||
|
regBtn.innerHTML = '<i class="fa fa-magic"></i> Register';
|
||||||
|
Sakura.DOM.RemoveClass(regBtn, ['input__button--disabled']);
|
||||||
|
|
||||||
|
var result = client.JSON();
|
||||||
|
|
||||||
|
if (result.error || result.text) {
|
||||||
|
var dialogue = new Sakura.Dialogue;
|
||||||
|
dialogue.Title = "Registration";
|
||||||
|
dialogue.Text = result.error || result.text;
|
||||||
|
dialogue.AddCallback(Sakura.DialogueButton.Ok, function () {
|
||||||
|
this.Close();
|
||||||
|
|
||||||
|
if (result.go) {
|
||||||
|
window.location.assign(result.go);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
dialogue.Display();
|
||||||
|
} else if (result.go) {
|
||||||
|
window.location.assign(result.go);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
client.Start(Sakura.HTTPMethod.POST);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="auth content content--auth">
|
<div class="auth content content--auth">
|
||||||
{% if config('user.disable_registration') %}
|
|
||||||
<div class="fa fa-remove fa-5x auth__blocked"></div>
|
|
||||||
<h1>Registration is disabled.</h1>
|
|
||||||
<p>Please try again later.</p>
|
|
||||||
{% else %}
|
|
||||||
<div class="content__header">
|
<div class="content__header">
|
||||||
Register
|
Register
|
||||||
</div>
|
</div>
|
||||||
<form id="registerForm" method="post" action="{{ route('auth.register') }}">
|
{% if config('user.disable_registration') %}
|
||||||
<label>
|
<div class="fa fa-remove fa-5x auth__blocked"></div>
|
||||||
<div class="auth__label">Username</div>
|
<h1>You can't create an account right now!</h1>
|
||||||
<input class="input__text" type="text" name="username" autofocus placeholder="Any character"{% if get.username is defined %} value="{{ get.username }}"{% endif %}>
|
<p>Please try again later, sorry for the inconvenience.</p>
|
||||||
</label>
|
{% else %}
|
||||||
<label>
|
<form id="registerForm" method="post" action="javascript:void(0)" onsubmit="yuunoAttemptRegistration(this)">
|
||||||
<div class="auth__label">E-mail</div>
|
<input type="hidden" name="session" value="{{ session_id() }}">
|
||||||
<input class="input__text" type="text" name="email" placeholder="Used for e.g. password retrieval"{% if get.email is defined %} value="{{ get.email }}"{% endif %}>
|
<label>
|
||||||
</label>
|
<div class="auth__label">Username</div>
|
||||||
<label>
|
<input class="input__text" type="text" name="username" required autofocus placeholder="Any character">
|
||||||
<div class="auth__label">Password</div>
|
</label>
|
||||||
<input class="input__text" type="password" name="password" placeholder="Using special characters is recommended">
|
<label>
|
||||||
</label>
|
<div class="auth__label">E-mail</div>
|
||||||
<button class="input__button auth__button" name="session" value="{{ session_id() }}">
|
<input class="input__text" type="text" name="email" required placeholder="Used for e.g. password retrieval">
|
||||||
<i class="fa fa-magic"></i> Register
|
</label>
|
||||||
</button>
|
<label>
|
||||||
<div class="auth__subtext">
|
<div class="auth__label">Password</div>
|
||||||
By creating an account you agree to the <a href="{{ route('info.terms') }}">Terms of Service</a>.<br>
|
<input class="input__text" type="password" name="password" required placeholder="Using special characters is recommended">
|
||||||
You are only allowed to make a single account.<br>
|
</label>
|
||||||
Didn't get your activation e-mail? <a href="{{ route('auth.reactivate') }}">Click here to resend it</a>!
|
<button class="input__button auth__button" id="reg-btn">
|
||||||
</div>
|
<i class="fa fa-magic"></i> Register
|
||||||
</form>
|
</button>
|
||||||
{% endif %}
|
<div class="auth__subtext">
|
||||||
|
By creating an account you agree to the <a href="{{ route('info.terms') }}">Terms of Service</a>.<br>
|
||||||
|
You are only allowed to make a single account.<br>
|
||||||
|
Didn't get your activation e-mail? <a href="{{ route('auth.activate') }}">Click here to resend it</a>!
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -1,15 +1,60 @@
|
||||||
{% extends 'master.twig' %}
|
{% extends 'master.twig' %}
|
||||||
|
|
||||||
{% set title = 'Reset Password' %}
|
{% set title = 'Reset password' %}
|
||||||
|
{% set verified = get.u is defined and get.k is defined %}
|
||||||
|
|
||||||
|
{% block js %}
|
||||||
|
<script>
|
||||||
|
function yuunoAttemptPasswordReset(form) {
|
||||||
|
var client = new Sakura.AJAX;
|
||||||
|
|
||||||
|
{% if not verified %}
|
||||||
|
var sndBtn = Sakura.DOM.ID('snd-btn');
|
||||||
|
sndBtn.disabled = true;
|
||||||
|
sndBtn.innerHTML = '<i class="fa fa-spinner fa-spin"></i>';
|
||||||
|
Sakura.DOM.AddClass(sndBtn, ['input__button--disabled']);
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
client.SetUrl("{{ route('auth.resetpassword') }}");
|
||||||
|
client.SetFormData(new FormData(form));
|
||||||
|
client.AddCallback(200, function () {
|
||||||
|
{% if not verified %}
|
||||||
|
sndBtn.disabled = false;
|
||||||
|
sndBtn.innerHTML = '<i class="fa fa-envelope"></i> Send e-mail';
|
||||||
|
Sakura.DOM.RemoveClass(sndBtn, ['input__button--disabled']);
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
var result = client.JSON();
|
||||||
|
|
||||||
|
if (result.error || result.text) {
|
||||||
|
var dialogue = new Sakura.Dialogue;
|
||||||
|
dialogue.Title = "Reset password";
|
||||||
|
dialogue.Text = result.error || result.text;
|
||||||
|
dialogue.AddCallback(Sakura.DialogueButton.Ok, function () {
|
||||||
|
this.Close();
|
||||||
|
|
||||||
|
if (result.go) {
|
||||||
|
window.location.assign(result.go);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
dialogue.Display();
|
||||||
|
} else if (result.go) {
|
||||||
|
window.location.assign(result.go);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
client.Start(Sakura.HTTPMethod.POST);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="auth content content--auth">
|
<div class="auth content content--auth">
|
||||||
<div class="content__header">
|
<div class="content__header">
|
||||||
Reset Password
|
Reset password
|
||||||
</div>
|
</div>
|
||||||
<form method="post" action="{{ route('auth.resetpassword') }}" id="passwordForm">
|
<form method="post" action="javascript:void(0)" onsubmit="yuunoAttemptPasswordReset(this)">
|
||||||
<input type="hidden" name="session" value="{{ session_id() }}">
|
<input type="hidden" name="session" value="{{ session_id() }}">
|
||||||
{% if get.u is defined and get.k is defined %}
|
{% if verified %}
|
||||||
<input type="hidden" name="user" value="{{ get.u }}">
|
<input type="hidden" name="user" value="{{ get.u }}">
|
||||||
<input type="hidden" name="key" value="{{ get.k }}">
|
<input type="hidden" name="key" value="{{ get.k }}">
|
||||||
<label>
|
<label>
|
||||||
|
@ -28,8 +73,8 @@
|
||||||
<div class="auth__label">E-mail</div>
|
<div class="auth__label">E-mail</div>
|
||||||
<input class="input__text" type="text" name="email">
|
<input class="input__text" type="text" name="email">
|
||||||
</label>
|
</label>
|
||||||
<button class="input__button auth__button">
|
<button class="input__button auth__button" id="snd-btn">
|
||||||
<i class="fa fa-envelope"></i> Request Change
|
<i class="fa fa-envelope"></i> Send e-mail
|
||||||
</button>
|
</button>
|
||||||
<div class="auth__subtext">
|
<div class="auth__subtext">
|
||||||
<a href="{{ route('info.contact') }}">Contact us</a> if you lost access to your e-mail address!
|
<a href="{{ route('info.contact') }}">Contact us</a> if you lost access to your e-mail address!
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
{% extends 'master.twig' %}
|
|
||||||
|
|
||||||
{% set title = 'Information' %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<div class="content content--alt">
|
|
||||||
<div>
|
|
||||||
<h1>Information</h1>
|
|
||||||
<hr>
|
|
||||||
{{ message|default('') }}
|
|
||||||
{% if redirect is defined %}<br><a href="{{ redirect }}">Click here if you aren't being redirected.</a>{% endif %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
|
@ -175,7 +175,7 @@
|
||||||
<div style="padding: 20px;">
|
<div style="padding: 20px;">
|
||||||
<h1>The requested user does not exist!</h1>
|
<h1>The requested user does not exist!</h1>
|
||||||
There are a few possible reasons for this:
|
There are a few possible reasons for this:
|
||||||
<ul style="padding-left: 40px;">
|
<ul style="padding-left: 40px; list-style: square">
|
||||||
<li>They changed their username.</li>
|
<li>They changed their username.</li>
|
||||||
<li>They may have been restricted.</li>
|
<li>They may have been restricted.</li>
|
||||||
<li>You made a typo.</li>
|
<li>You made a typo.</li>
|
||||||
|
|
|
@ -61,9 +61,8 @@ Router::group(['before' => 'maintenance'], function () {
|
||||||
Router::post('/register', 'AuthController@register', 'auth.register');
|
Router::post('/register', 'AuthController@register', 'auth.register');
|
||||||
Router::get('/reset-password', 'AuthController@resetPassword', 'auth.resetpassword');
|
Router::get('/reset-password', 'AuthController@resetPassword', 'auth.resetpassword');
|
||||||
Router::post('/reset-password', 'AuthController@resetPassword', 'auth.resetpassword');
|
Router::post('/reset-password', 'AuthController@resetPassword', 'auth.resetpassword');
|
||||||
Router::get('/reactivate', 'AuthController@reactivate', 'auth.reactivate');
|
|
||||||
Router::post('/reactivate', 'AuthController@reactivate', 'auth.reactivate');
|
|
||||||
Router::get('/activate', 'AuthController@activate', 'auth.activate');
|
Router::get('/activate', 'AuthController@activate', 'auth.activate');
|
||||||
|
Router::post('/activate', 'AuthController@activate', 'auth.activate');
|
||||||
});
|
});
|
||||||
|
|
||||||
// Info
|
// Info
|
||||||
|
|
Reference in a new issue