mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	Implement new password verifier #1187
This commit is contained in:
		| @@ -22,14 +22,13 @@ declare(strict_types=1); | ||||
|  | ||||
| namespace FireflyIII\Http\Controllers\Auth; | ||||
|  | ||||
| use DB; | ||||
| use FireflyConfig; | ||||
| use FireflyIII\Http\Controllers\Controller; | ||||
| use FireflyIII\Models\TransactionCurrency; | ||||
| use FireflyIII\User; | ||||
| use Illuminate\Cookie\CookieJar; | ||||
| use Illuminate\Foundation\Auth\AuthenticatesUsers; | ||||
| use Illuminate\Http\Request; | ||||
| use Schema; | ||||
|  | ||||
| /** | ||||
|  * @codeCoverageIgnore | ||||
| @@ -123,23 +122,9 @@ class LoginController extends Controller | ||||
|      */ | ||||
|     public function showLoginForm(Request $request) | ||||
|     { | ||||
|         // check for presence of tables: | ||||
|         $hasTable = Schema::hasTable('users'); | ||||
|  | ||||
|         if (!$hasTable) { | ||||
|             $message | ||||
|                 = 'Firefly III could not find the "users" table. This is a strong indication your database credentials are wrong or the database has not been initialized. Did you follow the installation instructions correctly?'; | ||||
|  | ||||
|             return view('error', compact('message')); | ||||
|         } | ||||
|  | ||||
|         // check for presence of currency: | ||||
|         $currency = TransactionCurrency::where('code', 'EUR')->first(); | ||||
|         if (null === $currency) { | ||||
|             $message | ||||
|                 = 'Firefly III could not find the EURO currency. This is a strong indication the database has not been initialized correctly. Did you follow the installation instructions?'; | ||||
|  | ||||
|             return view('error', compact('message')); | ||||
|         $count = DB::table('users')->count(); | ||||
|         if ($count === 0) { | ||||
|             return redirect(route('register')); // @codeCoverageIgnore | ||||
|         } | ||||
|  | ||||
|         // forget 2fa session thing. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user