blessing-skin-server/app/Http/Controllers/UserController.php

303 lines
9.0 KiB
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
<?php
2016-08-28 10:05:21 +08:00
namespace App\Http\Controllers;
2016-07-21 22:01:57 +08:00
2016-10-23 11:41:52 +08:00
use App;
2018-08-17 12:32:44 +08:00
use URL;
use Mail;
use View;
2018-08-17 12:32:44 +08:00
use Session;
2016-07-21 22:01:57 +08:00
use App\Models\User;
use App\Models\Texture;
use Illuminate\Http\Request;
2018-08-17 12:32:44 +08:00
use App\Mail\EmailVerification;
2016-11-18 23:06:15 +08:00
use App\Events\UserProfileUpdated;
use Illuminate\Support\Facades\Auth;
2016-10-23 11:41:52 +08:00
use App\Services\Repositories\UserRepository;
2016-07-21 22:01:57 +08:00
class UserController extends Controller
2016-07-21 22:01:57 +08:00
{
2018-08-17 12:32:44 +08:00
public function __construct()
{
$this->middleware(function ($request, $next) {
if (! Auth::user()->verified) {
$this->sendVerificationEmail();
}
return $next($request);
})->only(['index', 'profile']);
}
2016-07-21 22:01:57 +08:00
public function index()
{
$user = Auth::user();
return view('user.index')->with([
'user' => $user,
'statistics' => [
'players' => $this->calculatePercentageUsed($user->players->count(), option('score_per_player')),
'storage' => $this->calculatePercentageUsed($user->getStorageUsed(), option('score_per_storage')),
],
'announcement' => app('parsedown')->text(option_localized('announcement')),
]);
}
2018-08-08 09:50:35 +08:00
public function scoreInfo()
{
$user = Auth::user();
2018-08-08 09:50:35 +08:00
return [
'user' => [
'score' => $user->score,
'lastSignAt' => $user->last_sign_at,
],
'stats' => [
'players' => $this->calculatePercentageUsed($user->players->count(), option('score_per_player')),
'storage' => $this->calculatePercentageUsed($user->getStorageUsed(), option('score_per_storage')),
2018-08-08 09:50:35 +08:00
],
'signAfterZero' => option('sign_after_zero'),
'signGapTime' => option('sign_gap_time'),
2018-08-08 09:50:35 +08:00
];
}
/**
* Calculate percentage of resources used by user.
*
* @param int $used
* @param int $rate
* @return array
*/
protected function calculatePercentageUsed($used, $rate)
{
$user = Auth::user();
2018-02-16 17:31:04 +08:00
// Initialize default value to avoid division by zero.
$result['used'] = $used;
$result['total'] = 'UNLIMITED';
$result['percentage'] = 0;
if ($rate != 0) {
$result['total'] = $used + floor($user->getScore() / $rate);
$result['percentage'] = $result['total'] ? $used / $result['total'] * 100 : 100;
}
return $result;
2016-07-21 22:01:57 +08:00
}
/**
2017-07-14 09:17:42 +08:00
* Handle user signing.
*
2017-11-18 13:25:08 +08:00
* @return \Illuminate\Http\JsonResponse
*/
2017-07-14 09:17:42 +08:00
public function sign()
2016-07-21 22:01:57 +08:00
{
$user = Auth::user();
if ($user->canSign()) {
$acquiredScore = $user->sign();
2019-02-16 18:16:57 +08:00
$gap = option('sign_gap_time');
2016-09-10 21:39:45 +08:00
return json([
'errno' => 0,
2017-11-18 13:25:08 +08:00
'msg' => trans('user.sign-success', ['score' => $acquiredScore]),
'score' => $user->getScore(),
'storage' => $this->calculatePercentageUsed($user->getStorageUsed(), option('score_per_storage')),
'remaining_time' => $gap > 1 ? round($gap) : $gap,
2016-07-21 22:01:57 +08:00
]);
} else {
$remaining_time = $this->getUserSignRemainingTimeWithPrecision();
return json(trans('user.cant-sign-until', [
2017-11-18 13:25:08 +08:00
'time' => $remaining_time >= 1
? $remaining_time : round($remaining_time * 60),
'unit' => $remaining_time >= 1
? trans('user.time-unit-hour') : trans('user.time-unit-min'),
]), 1);
2016-07-21 22:01:57 +08:00
}
}
2019-02-16 17:02:28 +08:00
public function getUserSignRemainingTimeWithPrecision($user = null)
{
2019-02-16 17:02:28 +08:00
$hours = ($user ?? Auth::user())->getSignRemainingTime() / 3600;
return $hours > 1 ? round($hours) : $hours;
}
2018-08-17 12:32:44 +08:00
public function sendVerificationEmail()
{
if (! option('require_verification')) {
return json(trans('user.verification.disabled'), 1);
}
// Rate limit of 60s
$remain = 60 + session('last_mail_time', 0) - time();
if ($remain > 0) {
return json(trans('user.verification.frequent-mail'));
}
$user = Auth::user();
if ($user->verified) {
return json(trans('user.verification.verified'), 1);
}
$url = URL::signedRoute('auth.verify', ['uid' => $user->uid]);
try {
Mail::to($user->email)->send(new EmailVerification($url));
} catch (\Exception $e) {
// Write the exception to log
report($e);
2018-08-17 12:32:44 +08:00
return json(trans('user.verification.failed', ['msg' => $e->getMessage()]), 2);
}
Session::put('last_mail_time', time());
return json(trans('user.verification.success'), 0);
}
2016-07-21 22:01:57 +08:00
public function profile()
{
return view('user.profile')->with('user', Auth::user());
2016-07-21 22:01:57 +08:00
}
/**
* Handle changing user profile.
*
* @param Request $request
2017-11-18 13:25:08 +08:00
* @param UserRepository $users
* @return mixed
*/
public function handleProfile(Request $request, UserRepository $users)
2016-07-21 22:01:57 +08:00
{
$action = $request->input('action', '');
$user = Auth::user();
switch ($action) {
case 'nickname':
$this->validate($request, [
'new_nickname' => 'required|no_special_chars|max:255',
]);
$nickname = $request->input('new_nickname');
2016-07-21 22:01:57 +08:00
if ($user->setNickName($nickname)) {
event(new UserProfileUpdated($action, $user));
2016-09-24 22:49:20 +08:00
return json(trans('user.profile.nickname.success', ['nickname' => $nickname]), 0);
2017-11-18 13:25:08 +08:00
}
2016-07-21 22:01:57 +08:00
2017-11-18 13:25:08 +08:00
break; // @codeCoverageIgnore
case 'password':
$this->validate($request, [
2018-06-18 21:50:32 +08:00
'current_password' => 'required|min:6|max:32',
'new_password' => 'required|min:8|max:32',
]);
if (! $user->verifyPassword($request->input('current_password'))) {
2016-09-24 22:49:20 +08:00
return json(trans('user.profile.password.wrong-password'), 1);
}
if ($user->changePassword($request->input('new_password'))) {
event(new UserProfileUpdated($action, $user));
2018-02-16 19:54:07 +08:00
Auth::logout();
2018-02-16 19:54:07 +08:00
return json(trans('user.profile.password.success'), 0);
2017-11-18 13:25:08 +08:00
}
2016-07-21 22:01:57 +08:00
2017-11-18 13:25:08 +08:00
break; // @codeCoverageIgnore
2016-07-21 22:01:57 +08:00
case 'email':
$this->validate($request, [
'new_email' => 'required|email',
'password' => 'required|min:6|max:32',
]);
2016-07-21 22:01:57 +08:00
if ($users->get($request->input('new_email'), 'email')) {
return json(trans('user.profile.email.existed'), 1);
}
if (! $user->verifyPassword($request->input('password'))) {
2016-09-24 22:49:20 +08:00
return json(trans('user.profile.email.wrong-password'), 1);
}
2016-07-21 22:01:57 +08:00
if ($user->setEmail($request->input('new_email'))) {
2018-08-17 12:32:44 +08:00
// Set account status to unverified
$user->verified = false;
$user->save();
event(new UserProfileUpdated($action, $user));
2018-02-16 19:54:07 +08:00
Auth::logout();
return json(trans('user.profile.email.success'), 0);
2017-11-18 13:25:08 +08:00
}
2016-07-21 22:01:57 +08:00
2017-11-18 13:25:08 +08:00
break; // @codeCoverageIgnore
2016-07-21 22:01:57 +08:00
case 'delete':
$this->validate($request, [
'password' => 'required|min:6|max:32',
]);
2016-07-21 22:01:57 +08:00
if ($user->isAdmin()) {
2018-08-02 10:21:25 +08:00
return json(trans('user.profile.delete.admin'), 1);
}
2018-08-02 10:21:25 +08:00
if (! $user->verifyPassword($request->input('password'))) {
2016-09-24 22:49:20 +08:00
return json(trans('user.profile.delete.wrong-password'), 1);
}
2018-08-02 10:21:25 +08:00
Auth::logout();
2018-08-02 10:21:25 +08:00
if ($user->delete()) {
2016-11-17 17:32:12 +08:00
session()->flush();
2017-11-18 13:25:08 +08:00
return response()
->json([
'errno' => 0,
'msg' => trans('user.profile.delete.success'),
]);
}
2017-11-18 13:25:08 +08:00
break; // @codeCoverageIgnore
default:
2016-09-24 22:49:20 +08:00
return json(trans('general.illegal-parameters'), 1);
break;
2016-07-21 22:01:57 +08:00
}
}
// @codeCoverageIgnore
2016-07-21 22:01:57 +08:00
/**
* Set user avatar.
*
* @param Request $request
*/
public function setAvatar(Request $request)
2016-07-21 22:01:57 +08:00
{
$this->validate($request, [
'tid' => 'required|integer',
]);
$result = Texture::find($request->input('tid'));
2016-07-21 22:01:57 +08:00
if ($result) {
if ($result->type == 'cape') {
2016-09-24 22:49:20 +08:00
return json(trans('user.profile.avatar.wrong-type'), 1);
}
2016-07-21 22:01:57 +08:00
if (Auth::user()->setAvatar($request->input('tid'))) {
2016-09-24 22:49:20 +08:00
return json(trans('user.profile.avatar.success'), 0);
2016-07-21 22:01:57 +08:00
}
} else {
2017-08-07 13:48:20 +08:00
return json(trans('skinlib.non-existent'), 1);
2016-07-21 22:01:57 +08:00
}
}
2016-07-21 22:01:57 +08:00
// @codeCoverageIgnore
2016-07-21 22:01:57 +08:00
}