2021-09-26 22:06:49 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
2021-11-26 11:21:57 +01:00
|
|
|
use Throwable;
|
|
|
|
use Exception;
|
2021-12-01 13:47:20 +01:00
|
|
|
use App\Option;
|
2021-09-26 22:06:49 +02:00
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
2021-10-15 23:46:21 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2021-11-26 11:21:57 +01:00
|
|
|
use Illuminate\Support\Facades\Crypt;
|
|
|
|
use App\Exceptions\DbEncryptionException;
|
2021-09-26 22:06:49 +02:00
|
|
|
|
2021-12-01 13:47:20 +01:00
|
|
|
class SettingService
|
2021-09-26 22:06:49 +02:00
|
|
|
{
|
|
|
|
/**
|
2021-12-01 13:47:20 +01:00
|
|
|
* Get a setting
|
|
|
|
*
|
|
|
|
* @param string|array $setting A single setting name or an associative array of name:value settings
|
|
|
|
* @return mixed string|int|boolean|null
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
|
|
|
public function get(string $setting)
|
|
|
|
{
|
2021-11-22 01:19:40 +01:00
|
|
|
$options = $this->all();
|
|
|
|
$value = $options->get($setting);
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-12-01 13:47:20 +01:00
|
|
|
* Get all settings
|
|
|
|
*
|
|
|
|
* @return mixed Collection of settings
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
|
|
|
public function all() : Collection
|
|
|
|
{
|
|
|
|
// Get a collection of user saved options
|
|
|
|
$userOptions = DB::table('options')->pluck('value', 'key');
|
|
|
|
$userOptions->transform(function ($item, $key) {
|
|
|
|
return $this->restoreType($item);
|
|
|
|
});
|
2021-10-08 23:27:15 +02:00
|
|
|
$userOptions = collect(config('2fauth.options'))->merge($userOptions);
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
return $userOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-12-01 13:47:20 +01:00
|
|
|
* Set a setting
|
|
|
|
*
|
|
|
|
* @param string|array $setting A single setting name or an associative array of name:value settings
|
|
|
|
* @param string|int|boolean|null $value The value for single setting
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
|
|
|
public function set($setting, $value = null) : void
|
|
|
|
{
|
|
|
|
$settings = is_array($setting) ? $setting : [$setting => $value];
|
|
|
|
|
|
|
|
foreach ($settings as $setting => $value) {
|
2021-11-26 11:21:57 +01:00
|
|
|
if( $setting === 'useEncryption')
|
|
|
|
{
|
|
|
|
$this->setEncryptionTo($value);
|
|
|
|
}
|
|
|
|
|
2021-09-26 22:06:49 +02:00
|
|
|
$settings[$setting] = $this->replaceBoolean($value);
|
|
|
|
}
|
|
|
|
|
2021-10-15 23:46:21 +02:00
|
|
|
foreach ($settings as $setting => $value) {
|
2021-12-01 13:47:20 +01:00
|
|
|
Option::updateOrCreate(['key' => $setting], ['value' => $value]);
|
2021-10-15 23:46:21 +02:00
|
|
|
Log::info(sprintf('Setting %s is now %s', var_export($setting, true), var_export($this->restoreType($value), true)));
|
|
|
|
}
|
2021-09-26 22:06:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-12-01 13:47:20 +01:00
|
|
|
* Delete a setting
|
|
|
|
*
|
|
|
|
* @param string $name The setting name
|
2021-09-26 22:06:49 +02:00
|
|
|
*/
|
|
|
|
public function delete(string $name) : void
|
|
|
|
{
|
2021-12-01 13:47:20 +01:00
|
|
|
Option::where('key', $name)->delete();
|
2021-10-15 23:46:21 +02:00
|
|
|
Log::info(sprintf('Setting %s deleted', var_export($name, true)));
|
2021-09-26 22:06:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces boolean by a patterned string as appstrack/laravel-options package does not support var type
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Support\Collection $settings
|
|
|
|
* @return \Illuminate\Support\Collection
|
|
|
|
*/
|
|
|
|
private function replaceBoolean($value)
|
|
|
|
{
|
|
|
|
return is_bool($value) ? '{{' . $value . '}}' : $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replaces patterned string that represent booleans with real booleans
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Support\Collection $settings
|
|
|
|
* @return \Illuminate\Support\Collection
|
|
|
|
*/
|
|
|
|
private function restoreType($value)
|
|
|
|
{
|
2021-10-15 23:47:00 +02:00
|
|
|
$value = is_numeric($value) ? (int) $value : $value;
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
if( $value === '{{}}' ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if( $value === '{{1}}' ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
2021-11-26 11:21:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable or Disable encryption of 2FAccounts sensible data
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @throws DbEncryptionException Something failed, everything have been rolled back
|
|
|
|
*/
|
|
|
|
private function setEncryptionTo(bool $state) : void
|
|
|
|
{
|
|
|
|
// We don't want the records to be encrypted/decrypted multiple successive times
|
|
|
|
$isInUse = $this->get('useEncryption');
|
|
|
|
|
|
|
|
if ($isInUse === !$state) {
|
|
|
|
if ($this->updateRecords($state)) {
|
|
|
|
if ($state) {
|
|
|
|
Log::notice('Sensible data are now encrypted');
|
|
|
|
}
|
|
|
|
else Log::notice('Sensible data are now decrypted');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Log::warning('Some data cannot be encrypted/decrypted, the useEncryption setting remain unchanged');
|
|
|
|
throw new DbEncryptionException($state === true ? __('errors.error_during_encryption') : __('errors.error_during_decryption'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Encrypt/Decrypt accounts in database
|
|
|
|
*
|
|
|
|
* @param boolean $encrypted Whether the record should be encrypted or not
|
|
|
|
* @return boolean Whether the operation completed successfully
|
|
|
|
*/
|
|
|
|
private function updateRecords(bool $encrypted) : bool
|
|
|
|
{
|
|
|
|
$success = true;
|
|
|
|
$twofaccounts = DB::table('twofaccounts')->get();
|
|
|
|
|
|
|
|
$twofaccounts->each(function ($item, $key) use(&$success, $encrypted) {
|
|
|
|
try {
|
|
|
|
$item->legacy_uri = $encrypted ? Crypt::encryptString($item->legacy_uri) : Crypt::decryptString($item->legacy_uri);
|
|
|
|
$item->account = $encrypted ? Crypt::encryptString($item->account) : Crypt::decryptString($item->account);
|
|
|
|
$item->secret = $encrypted ? Crypt::encryptString($item->secret) : Crypt::decryptString($item->secret);
|
|
|
|
}
|
|
|
|
catch (Exception $ex) {
|
|
|
|
$success = false;
|
|
|
|
// Exit the each iteration
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if ($success) {
|
|
|
|
// The whole collection has now its sensible data encrypted/decrypted
|
|
|
|
// We update the db using a transaction that can rollback everything if an error occured
|
|
|
|
DB::beginTransaction();
|
|
|
|
|
|
|
|
try {
|
|
|
|
$twofaccounts->each(function ($item, $key) {
|
|
|
|
DB::table('twofaccounts')
|
|
|
|
->where('id', $item->id)
|
|
|
|
->update([
|
|
|
|
'legacy_uri' => $item->legacy_uri,
|
|
|
|
'account' => $item->account,
|
|
|
|
'secret' => $item->secret
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
DB::commit();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
catch (Throwable $ex) {
|
|
|
|
DB::rollBack();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
}
|
|
|
|
else return false;
|
|
|
|
}
|
2021-09-26 22:06:49 +02:00
|
|
|
}
|