mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-07-26 14:47:06 -04:00
* refactor(login): rename methods and keys to camelCase, add initialization keys - Rename snake_case methods to camelCase in MY_Migration and callers: is_latest() → isLatest(), migrate_to_ci4() → migrateToCI4(), get_latest_migration() → getLatestMigration(), get_current_version() → getCurrentVersion() - Rename snake_case array keys to camelCase in Login controller: has_errors → hasErrors, is_new_install → isNewInstall, is_latest → isLatest, latest_version → latestVersion, gcaptcha_enabled → gcaptchaEnabled - Add initialization_required, initialization_message, initialize keys to all language files to support new install flow messaging Signed-off-by: Travis Garrison <travis@chiraqbookstore.com> * refactor(login): move auth validation before migration, reorder language keys alphabetically - Validate credentials with login_check rule before attempting migration - Return 401 with invalid credentials message on validation failure - Alphabetically reorder and align language file keys across all locales - Add new migration status keys: migrating_database, migration_complete, migration_complete_login, migration_complete_migrate - Remove deprecated keys: migration_needed, migration_initializing, migration_running, migration_required Signed-off-by: Travis Garrison <travis@chiraqbookstore.com> --------- Signed-off-by: Travis Garrison <travis@chiraqbookstore.com> Co-authored-by: Travis Garrison <travis@chiraqbookstore.com>
116 lines
3.4 KiB
PHP
116 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Libraries\MY_Migration;
|
|
use App\Models\Employee;
|
|
use CodeIgniter\HTTP\RedirectResponse;
|
|
use CodeIgniter\HTTP\ResponseInterface;
|
|
use CodeIgniter\Model;
|
|
use Config\OSPOS;
|
|
use Config\Services;
|
|
|
|
/**
|
|
* @property employee employee
|
|
*/
|
|
class Login extends BaseController
|
|
{
|
|
public Model $employee;
|
|
|
|
/**
|
|
* @return RedirectResponse|string
|
|
*/
|
|
public function index(): string|RedirectResponse
|
|
{
|
|
$this->employee = model(Employee::class);
|
|
if (!$this->employee->is_logged_in()) {
|
|
$migration = new MY_Migration(config('Migrations'));
|
|
$config = config(OSPOS::class)->settings;
|
|
|
|
$gcaptchaEnabled = array_key_exists('gcaptcha_enable', $config)
|
|
? $config['gcaptcha_enable']
|
|
: false;
|
|
|
|
$migration->migrateToCI4();
|
|
|
|
$validation = Services::validation();
|
|
|
|
$data = [
|
|
'hasErrors' => false,
|
|
'isNewInstall' => !(MY_Migration::getCurrentVersion()),
|
|
'isLatest' => $migration->isLatest(),
|
|
'latestVersion' => $migration->getLatestMigration(),
|
|
'gcaptchaEnabled' => $gcaptchaEnabled,
|
|
'config' => $config,
|
|
'validation' => $validation
|
|
];
|
|
|
|
if ($this->request->getMethod() !== 'POST') {
|
|
return view('login', $data);
|
|
}
|
|
|
|
if (!$data['isLatest'] || $data['isNewInstall']) {
|
|
set_time_limit(3600);
|
|
|
|
$migration->setNamespace('App')->latest();
|
|
return redirect()->to('login');
|
|
}
|
|
|
|
$rules = ['username' => 'required|login_check[data]'];
|
|
$messages = [
|
|
'username' => [
|
|
'required' => lang('Login.required_username'),
|
|
'login_check' => lang('Login.invalid_username_and_password'),
|
|
]
|
|
];
|
|
|
|
if (!$this->validate($rules, $messages)) {
|
|
$data['has_errors'] = !empty($validation->getErrors());
|
|
|
|
return view('login', $data);
|
|
}
|
|
}
|
|
|
|
return redirect()->to('home');
|
|
}
|
|
|
|
public function migrate(): ResponseInterface
|
|
{
|
|
$rules = ['username' => 'required|login_check[data]'];
|
|
$messages = [
|
|
'username' => [
|
|
'required' => lang('Login.required_username'),
|
|
'login_check' => lang('Login.invalid_username_and_password'),
|
|
]
|
|
];
|
|
|
|
if (!$this->validate($rules, $messages)) {
|
|
return $this->response->setJSON([
|
|
'success' => false,
|
|
'message' => lang('Login.invalid_username_and_password')
|
|
])->setStatusCode(401);
|
|
}
|
|
|
|
try {
|
|
$migration = new MY_Migration(config('Migrations'));
|
|
$migration->migrateToCI4();
|
|
|
|
set_time_limit(3600);
|
|
$migration->setNamespace('App')->latest();
|
|
|
|
return $this->response->setJSON([
|
|
'success' => true,
|
|
'message' => 'Migration completed successfully'
|
|
]);
|
|
|
|
} catch (\Exception $e) {
|
|
log_message('error', 'Migration failed: ' . $e->getMessage());
|
|
|
|
return $this->response->setJSON([
|
|
'success' => false,
|
|
'message' => 'Migration failed: ' . $e->getMessage()
|
|
])->setStatusCode(500);
|
|
}
|
|
}
|
|
}
|