| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2018-05-11 10:08:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2019-04-11 06:06:25 +02:00
										 |  |  |  * AccountUpdateRequest.php | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |  * Copyright (c) 2018 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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-11 10:08:34 +02:00
										 |  |  | declare(strict_types=1); | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\Api\V1\Requests; | 
					
						
							| 
									
										
										
										
											2018-12-14 18:33:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | use FireflyIII\Rules\IsBoolean; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2019-04-11 06:06:25 +02:00
										 |  |  |  * Class AccountUpdateRequest | 
					
						
							| 
									
										
										
										
											2019-04-12 04:53:18 +02:00
										 |  |  |  * @codeCoverageIgnore | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-04-11 06:06:25 +02:00
										 |  |  | class AccountUpdateRequest extends Request | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-24 07:56:08 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * @return array | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getUpdateData(): array | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $active          = null; | 
					
						
							|  |  |  |         $includeNetWorth = null; | 
					
						
							|  |  |  |         if (null !== $this->get('active')) { | 
					
						
							|  |  |  |             $active = $this->boolean('active'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (null !== $this->get('include_net_worth')) { | 
					
						
							|  |  |  |             $includeNetWorth = $this->boolean('include_net_worth'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $data = [ | 
					
						
							|  |  |  |             'name'                    => $this->nullableString('name'), | 
					
						
							|  |  |  |             'active'                  => $active, | 
					
						
							|  |  |  |             'include_net_worth'       => $includeNetWorth, | 
					
						
							|  |  |  |             'account_type'            => $this->nullableString('type'), | 
					
						
							|  |  |  |             'account_type_id'         => null, | 
					
						
							|  |  |  |             'currency_id'             => $this->nullableInteger('currency_id'), | 
					
						
							|  |  |  |             'currency_code'           => $this->nullableString('currency_code'), | 
					
						
							|  |  |  |             'virtual_balance'         => $this->nullableString('virtual_balance'), | 
					
						
							|  |  |  |             'iban'                    => $this->nullableString('iban'), | 
					
						
							|  |  |  |             'BIC'                     => $this->nullableString('bic'), | 
					
						
							|  |  |  |             'account_number'          => $this->nullableString('account_number'), | 
					
						
							|  |  |  |             'account_role'            => $this->nullableString('account_role'), | 
					
						
							|  |  |  |             'opening_balance'         => $this->nullableString('opening_balance'), | 
					
						
							|  |  |  |             'opening_balance_date'    => $this->date('opening_balance_date'), | 
					
						
							|  |  |  |             'cc_type'                 => $this->nullableString('credit_card_type'), | 
					
						
							|  |  |  |             'cc_Monthly_payment_date' => $this->nullableString('monthly_payment_date'), | 
					
						
							|  |  |  |             'notes'                   => $this->nullableString('notes'), | 
					
						
							|  |  |  |             'interest'                => $this->nullableString('interest'), | 
					
						
							|  |  |  |             'interest_period'         => $this->nullableString('interest_period'), | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ('liability' === $data['account_type']) { | 
					
						
							|  |  |  |             $data['opening_balance']      = bcmul($this->nullableString('liability_amount'), '-1'); | 
					
						
							|  |  |  |             $data['opening_balance_date'] = $this->date('liability_start_date'); | 
					
						
							|  |  |  |             $data['account_type']         = $this->nullableString('liability_type'); | 
					
						
							|  |  |  |             $data['account_type_id']      = null; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $data; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2018-07-06 07:15:42 +02:00
										 |  |  |      * Authorize logged in users. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-02-16 16:42:23 +01:00
										 |  |  |     public function authorize(): bool | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         // Only allow authenticated users
 | 
					
						
							|  |  |  |         return auth()->check(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2018-07-06 07:15:42 +02:00
										 |  |  |      * The rules that the incoming request must be matched against. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |      * @return array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-02-16 16:42:23 +01:00
										 |  |  |     public function rules(): array | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-04-11 06:06:25 +02:00
										 |  |  |         $account        = $this->route()->parameter('account'); | 
					
						
							| 
									
										
										
										
											2018-03-26 19:19:11 +02:00
										 |  |  |         $accountRoles   = implode(',', config('firefly.accountRoles')); | 
					
						
							|  |  |  |         $types          = implode(',', array_keys(config('firefly.subTitlesByIdentifier'))); | 
					
						
							|  |  |  |         $ccPaymentTypes = implode(',', array_keys(config('firefly.ccTypes'))); | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |         $rules          = [ | 
					
						
							| 
									
										
										
										
											2019-08-24 07:56:08 +02:00
										 |  |  |             'name'                 => sprintf('min:1|uniqueAccountForUser:%d', $account->id), | 
					
						
							| 
									
										
										
										
											2019-04-11 06:06:25 +02:00
										 |  |  |             'type'                 => sprintf('in:%s', $types), | 
					
						
							| 
									
										
										
										
											2018-12-15 07:59:49 +01:00
										 |  |  |             'iban'                 => 'iban|nullable', | 
					
						
							|  |  |  |             'bic'                  => 'bic|nullable', | 
					
						
							| 
									
										
										
										
											2019-04-11 06:06:25 +02:00
										 |  |  |             'account_number'       => sprintf('between:1,255|nullable|uniqueAccountNumberForUser:%d', $account->id), | 
					
						
							| 
									
										
										
										
											2018-12-15 07:59:49 +01:00
										 |  |  |             'opening_balance'      => 'numeric|required_with:opening_balance_date|nullable', | 
					
						
							|  |  |  |             'opening_balance_date' => 'date|required_with:opening_balance|nullable', | 
					
						
							|  |  |  |             'virtual_balance'      => 'numeric|nullable', | 
					
						
							|  |  |  |             'currency_id'          => 'numeric|exists:transaction_currencies,id', | 
					
						
							|  |  |  |             'currency_code'        => 'min:3|max:3|exists:transaction_currencies,code', | 
					
						
							|  |  |  |             'active'               => [new IsBoolean], | 
					
						
							|  |  |  |             'include_net_worth'    => [new IsBoolean], | 
					
						
							| 
									
										
										
										
											2019-04-11 06:06:25 +02:00
										 |  |  |             'account_role'         => sprintf('in:%s|required_if:type,asset', $accountRoles), | 
					
						
							|  |  |  |             'credit_card_type'     => sprintf('in:%s|required_if:account_role,ccAsset', $ccPaymentTypes), | 
					
						
							| 
									
										
										
										
											2018-12-15 07:59:49 +01:00
										 |  |  |             'monthly_payment_date' => 'date' . '|required_if:account_role,ccAsset|required_if:credit_card_type,monthlyFull', | 
					
						
							|  |  |  |             'liability_type'       => 'required_if:type,liability|in:loan,debt,mortgage', | 
					
						
							|  |  |  |             'liability_amount'     => 'required_if:type,liability|min:0|numeric', | 
					
						
							|  |  |  |             'liability_start_date' => 'required_if:type,liability|date', | 
					
						
							|  |  |  |             'interest'             => 'required_if:type,liability|between:0,100|numeric', | 
					
						
							|  |  |  |             'interest_period'      => 'required_if:type,liability|in:daily,monthly,yearly', | 
					
						
							|  |  |  |             'notes'                => 'min:0|max:65536', | 
					
						
							| 
									
										
										
										
											2018-02-13 18:24:06 +01:00
										 |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $rules; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-03-05 19:35:58 +01:00
										 |  |  | } |