firefly-iii/app/Validation/FireflyValidator.php

239 lines
6.4 KiB
PHP
Raw Normal View History

<?php
namespace FireflyIII\Validation;
2015-02-24 15:53:38 -06:00
use Auth;
use Carbon\Carbon;
2015-03-26 12:05:23 -05:00
use Config;
use Crypt;
use DB;
2015-03-30 13:08:27 -05:00
use FireflyIII\Models\Account;
2015-03-26 12:05:23 -05:00
use FireflyIII\Models\AccountType;
2015-03-30 13:08:27 -05:00
use Illuminate\Contracts\Encryption\DecryptException;
2015-02-11 00:35:10 -06:00
use Illuminate\Validation\Validator;
2015-03-30 13:08:27 -05:00
use Log;
use Navigation;
2015-02-11 00:35:10 -06:00
/**
* Class FireflyValidator
*
* @package FireflyIII\Validation
*/
class FireflyValidator extends Validator
{
2015-02-24 15:53:38 -06:00
/**
* @param $attribute
* @param $value
* @param $parameters
*
* @return bool
*/
public function validateBelongsToUser($attribute, $value, $parameters)
{
2015-03-30 13:08:27 -05:00
2015-02-24 15:53:38 -06:00
$count = DB::table($parameters[0])->where('user_id', Auth::user()->id)->where('id', $value)->count();
if ($count == 1) {
return true;
}
return false;
}
2015-03-26 12:05:23 -05:00
/**
* @param $attribute
* @param $value
* @param $parameters
*
* @return bool
*/
public function validatePiggyBankReminder($attribute, $value, $parameters)
{
$array = $this->data;
// no reminder? dont care.
if (!isset($array['remind_me'])) {
return true;
}
// get or set start date & target date:
$startDate = isset($array['startdate']) ? new Carbon($array['startdate']) : new Carbon;
$targetDate = isset($array['targetdate']) && strlen($array['targetdate']) > 0 ? new Carbon($array['targetdate']) : null;
// target date is null? reminder period is always good.
if ($array['remind_me'] == '1' && is_null($targetDate)) {
return true;
}
2015-03-26 12:05:23 -05:00
$nextReminder = Navigation::addPeriod($startDate, $array['reminder'], 0);
// reminder is beyond target?
2015-03-26 12:05:23 -05:00
if ($nextReminder > $targetDate) {
return false;
}
2015-03-26 12:05:23 -05:00
return true;
}
2015-03-26 12:05:23 -05:00
/**
* @param $attribute
* @param $value
* @param $parameters
*
* @return bool
*/
public function validateUniqueAccountForUser($attribute, $value, $parameters)
{
2015-03-30 13:08:27 -05:00
$type = null;
2015-03-27 03:24:26 -05:00
2015-03-27 03:21:09 -05:00
2015-03-30 13:08:27 -05:00
/**
* Switch on different cases on which this method can respond:
*/
$hasWhat = isset($this->data['what']);
$hasAccountTypeId = isset($this->data['account_type_id']) && isset($this->data['name']);
$hasAccountId = isset($this->data['id']);
$ignoreId = 0;
2015-03-30 13:08:27 -05:00
if ($hasWhat) {
$search = Config::get('firefly.accountTypeByIdentifier.' . $this->data['what']);
$type = AccountType::whereType($search)->first();
// this field can be used to find the exact type, and continue.
}
if ($hasAccountTypeId) {
$type = AccountType::find($this->data['account_type_id']);
}
if ($hasAccountId) {
/** @var Account $account */
$account = Account::find($this->data['id']);
$ignoreId = intval($this->data['id']);
$type = AccountType::find($account->account_type_id);
unset($account);
2015-03-26 12:05:23 -05:00
}
2015-03-30 13:08:27 -05:00
/**
* Try to decrypt data just in case:
*/
try {
$value = Crypt::decrypt($value);
} catch (DecryptException $e) {
}
2015-03-30 13:08:27 -05:00
if (is_null($type)) {
Log::error('Could not determine type of account to validate.');
2015-03-30 13:08:27 -05:00
return false;
2015-03-26 12:05:23 -05:00
}
2015-03-30 13:08:27 -05:00
// get all accounts with this type, and find the name.
$userId = Auth::check() ? Auth::user()->id : 0;
$set = Account::where('account_type_id', $type->id)->where('id', '!=', $ignoreId)->where('user_id', $userId)->get();
2015-03-30 13:08:27 -05:00
/** @var Account $entry */
foreach ($set as $entry) {
if ($entry->name == $value) {
return false;
}
2015-03-26 12:05:23 -05:00
}
2015-03-30 13:08:27 -05:00
return true;
2015-03-26 12:05:23 -05:00
}
2015-02-11 00:35:10 -06:00
/**
* @param $attribute
* @param $value
* @param $parameters
*
* @return bool
*/
public function validateUniqueForUser($attribute, $value, $parameters)
{
$query = DB::table($parameters[0])->where($parameters[1], $value);
2015-03-26 12:05:23 -05:00
$query->where('user_id', Auth::user()->id);
if (isset($paramers[2])) {
$query->where('id', '!=', $parameters[2]);
}
$count = $query->count();
2015-02-11 00:35:10 -06:00
if ($count == 0) {
return true;
}
2015-02-11 00:35:10 -06:00
return false;
}
2015-03-27 14:20:52 -05:00
2015-03-31 07:16:25 -05:00
/**
* Validate an object and its unicity. Checks for encryption / encrypted values as well.
*
* parameter 0: the table
* parameter 1: the field
* parameter 2: the encrypted / not encrypted boolean. Defaults to "encrypted".
* parameter 3: an id to ignore (when editing)
*
* @param $attribute
* @param $value
* @param $parameters
*
* @return bool
*/
public function validateUniqueObjectForUser($attribute, $value, $parameters)
{
$table = $parameters[0];
$field = $parameters[1];
$encrypted = isset($parameters[2]) ? $parameters[2] : 'encrypted';
$exclude = isset($parameters[3]) ? $parameters[3] : null;
$query = DB::table($table)->where('user_id', Auth::user()->id);
if (!is_null($exclude)) {
$query->where('id', '!=', $exclude);
}
$set = $query->get();
foreach ($set as $entry) {
$isEncrypted = intval($entry->$encrypted) == 1 ? true : false;
$checkValue = $isEncrypted ? Crypt::decrypt($entry->$field) : $entry->$field;
if ($checkValue == $value) {
return false;
}
}
return true;
}
2015-03-27 14:20:52 -05:00
/**
* @param $attribute
* @param $value
* @param $parameters
*
* @return bool
*/
public function validateUniquePiggyBankForUser($attribute, $value, $parameters)
{
2015-03-31 07:16:25 -05:00
$exclude = isset($parameters[0]) ? $parameters[0] : null;
$query = DB::table('piggy_banks');
2015-03-27 14:20:52 -05:00
$query->leftJoin('accounts', 'accounts.id', '=', 'piggy_banks.account_id');
$query->where('accounts.user_id', Auth::user()->id);
2015-03-31 07:16:25 -05:00
if (!is_null($exclude)) {
$query->where('piggy_banks.id', '!=', $exclude);
2015-03-27 14:20:52 -05:00
}
2015-03-31 07:16:25 -05:00
$set = $query->get(['piggy_banks.*']);
foreach($set as $entry) {
$isEncrypted = intval($entry->encrypted) == 1 ? true : false;
$checkValue = $isEncrypted ? Crypt::decrypt($entry->name) : $entry->name;
if($checkValue == $value) {
return false;
}
2015-03-27 14:20:52 -05:00
}
2015-03-31 07:16:25 -05:00
return true;
2015-03-27 14:20:52 -05:00
}
}