mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
134 lines
4.5 KiB
PHP
134 lines
4.5 KiB
PHP
<?php
|
|
/**
|
|
* Sandstorm.php
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
*
|
|
* This file is part of Firefly III.
|
|
*
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Http\Middleware;
|
|
|
|
use Auth;
|
|
use Closure;
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
use FireflyIII\Repositories\User\UserRepositoryInterface;
|
|
use FireflyIII\User;
|
|
use Illuminate\Http\Request;
|
|
use Log;
|
|
use View;
|
|
|
|
/**
|
|
* Class Sandstorm.
|
|
*/
|
|
class Sandstorm
|
|
{
|
|
/**
|
|
* Detects if is using Sandstorm, and responds by logging the user
|
|
* in and/or creating an account.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @param string|null $guard
|
|
*
|
|
* @return mixed
|
|
*
|
|
* @throws FireflyException
|
|
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
|
|
*/
|
|
public function handle(Request $request, Closure $next, $guard = null)
|
|
{
|
|
// is in Sandstorm environment?
|
|
$sandstorm = 1 === (int)getenv('SANDSTORM');
|
|
View::share('SANDSTORM', $sandstorm);
|
|
if (!$sandstorm) {
|
|
return $next($request);
|
|
}
|
|
|
|
// we're in sandstorm! is user a guest?
|
|
if (Auth::guard($guard)->guest()) {
|
|
/** @var UserRepositoryInterface $repository */
|
|
$repository = app(UserRepositoryInterface::class);
|
|
$userId = (string)$request->header('X-Sandstorm-User-Id');
|
|
Log::debug(sprintf('Sandstorm user ID is "%s"', $userId));
|
|
$count = $repository->count();
|
|
|
|
// if there already is one user in this instance, we assume this is
|
|
// the "main" user. Firefly's nature does not allow other users to
|
|
// access the same data so we have no choice but to simply login
|
|
// the new user to the same account and just forget about Bob and Alice
|
|
// and any other differences there may be between these users.
|
|
if (1 === $count && strlen($userId) > 0) {
|
|
// login as first user user.
|
|
$user = $repository->first();
|
|
Auth::guard($guard)->login($user);
|
|
View::share('SANDSTORM_ANON', false);
|
|
|
|
return $next($request);
|
|
}
|
|
|
|
if (1 === $count && 0 === strlen($userId)) {
|
|
// login but indicate anonymous
|
|
$user = User::first();
|
|
Auth::guard($guard)->login($user);
|
|
View::share('SANDSTORM_ANON', true);
|
|
|
|
return $next($request);
|
|
}
|
|
|
|
if (0 === $count && strlen($userId) > 0) {
|
|
// create new user.
|
|
$email = $userId . '@firefly';
|
|
/** @var User $user */
|
|
$user = $repository->store(
|
|
[
|
|
'blocked' => false,
|
|
'blocked_code' => null,
|
|
'email' => $email,
|
|
]
|
|
);
|
|
Auth::guard($guard)->login($user);
|
|
|
|
// also make the user an admin
|
|
$repository->attachRole($user, 'owner');
|
|
|
|
// share value.
|
|
View::share('SANDSTORM_ANON', false);
|
|
|
|
return $next($request);
|
|
}
|
|
|
|
if (0 === $count && 0 === strlen($userId)) {
|
|
throw new FireflyException('The first visit to a new Firefly III administration cannot be by a guest user.');
|
|
}
|
|
|
|
if ($count > 1) {
|
|
throw new FireflyException('Your Firefly III installation has more than one user, which is weird.');
|
|
}
|
|
}
|
|
// if in Sandstorm, user logged in, still must check if user is anon.
|
|
$userId = (string)$request->header('X-Sandstorm-User-Id');
|
|
if (strlen($userId) === 0) {
|
|
View::share('SANDSTORM_ANON', true);
|
|
|
|
return $next($request);
|
|
}
|
|
View::share('SANDSTORM_ANON', false);
|
|
|
|
return $next($request);
|
|
}
|
|
}
|