'object' ]; public function gateway_tokens() { return $this->hasMany(ClientGatewayToken::class); } /** * Retrieves the specific payment token per * gateway - per payment method * * Allows the storage of multiple tokens * per client per gateway per payment_method * * @param int $gateway_id The gateway ID * @param int $payment_method_id The payment method ID * @return ClientGatewayToken The client token record */ public function gateway_token($gateway_id, $payment_method_id) { return $this->gateway_tokens ->whereCompanyGatewayId($gateway_id) ->wherePaymentMethod_id($payment_method_id) ->first(); } public function contacts() { return $this->hasMany(ClientContact::class)->orderBy('is_primary', 'desc'); } public function primary_contact() { return $this->hasMany(ClientContact::class)->whereIsPrimary(true); } public function company() { return $this->belongsTo(Company::class); } public function country() { return $this->belongsTo(Country::class); } public function shipping_country() { return $this->belongsTo(Country::class, 'shipping_country_id', 'id'); } public function timezone() { return Timezone::find($this->getSetting('timezone_id')); } public function date_format() { return $this->getSetting('date_format'); } public function datetime_format() { return $this->getSetting('datetime_format'); } public function currency() { return $this->belongsTo(Currency::class); } /** * * Returns the entire filtered set * of settings which have been merged from * Client > Group > Company levels * * @return object stdClass object of settings */ public function getMergedSettings() { if($this->group_settings !== null) { $group_settings = ClientSettings::buildClientSettings($this->group_settings->settings, $this->settings); return ClientSettings::buildClientSettings($this->company->settings, $group_settings); } return ClientSettings::buildClientSettings($this->company->settings, $this->settings); } /** * * Returns a single setting * which cascades from * Client > Group > Company * * @param string $setting The Setting parameter * @return mixed The setting requested */ public function getSetting($setting) { //check client level first if($this->settings && (property_exists($this->settings, $setting) !== false) && (isset($this->settings->{$setting}) !== false) ){ /*need to catch empt string here*/ if(is_string($this->settings->{$setting}) && (iconv_strlen($this->settings->{$setting}) >=1)){ return $this->settings->{$setting}; } } //check group level (if a group is assigned) if($this->group_settings && (property_exists($this->group_settings->settings, $setting) !== false) && (isset($this->group_settings->settings->{$setting}) !== false)){ return $this->group_settings->settings->{$setting}; } //check company level if((property_exists($this->company->settings, $setting) != false ) && (isset($this->company->settings->{$setting}) !== false) ){ return $this->company->settings->{$setting}; } throw new \Exception("Settings corrupted", 1); } public function documents() { return $this->morphMany(Document::class, 'documentable'); } public function group_settings() { return $this->belongsTo(GroupSetting::class); } /** * Returns the first Credit Card Gateway * * @return NULL|CompanyGateway The Priority Credit Card gateway */ public function getCreditCardGateway() :?CompanyGateway { $company_gateways = $this->getSetting('company_gateways'); /* If we have a custom gateway list pass this back first */ if($company_gateways) $gateways = $this->company->company_gateways->whereIn('id', $company_gateways); else $gateways = $this->company->company_gateways; foreach($gateways as $gateway) { if(in_array(GatewayType::CREDIT_CARD, $gateway->driver($this)->gatewayTypes())) return $gateway; } return null; } /** * Generates an array of payment urls per client * for a given amount. * * The route produced will provide the * company_gateway and payment_type ids * * The invoice/s will need to be injected * upstream of this method as they are not * included in this logic. * * @param float $amount The amount to be charged * @return array Array of payment labels and urls */ public function getPaymentMethods($amount) :array { //this method will get all the possible gateways a client can pay with //but we also need to consider payment methods that are already stored //so we MUST filter the company gateways and remove duplicates. // //Also need to harvest the list of client gateway tokens and present these //for instant payment $company_gateways = $this->getSetting('company_gateways'); if($company_gateways) $gateways = $this->company->company_gateways->whereIn('id', $payment_gateways); else $gateways = $this->company->company_gateways; $gateways->filter(function ($method) use ($amount){ if($method->min_limit !== null && $amount < $method->min_limit) return false; if($method->max_limit !== null && $amount > $method->min_limit) return false; }); $payment_methods = []; foreach($gateways as $gateway) foreach($gateway->driver($this)->gatewayTypes() as $type) $payment_methods[] = [$gateway->id => $type]; $payment_methods_collections = collect($payment_methods); //** Plucks the remaining keys into its own collection $payment_methods_intersect = $payment_methods_collections->intersectByKeys( $payment_methods_collections->flatten(1)->unique() ); $payment_urls = []; foreach($payment_methods_intersect as $key => $child_array) { foreach($child_array as $gateway_id => $gateway_type_id) { $gateway = $gateways->where('id', $gateway_id)->first(); $fee_label = $gateway->calcGatewayFeeLabel($amount, $this); $payment_urls[] = [ 'label' => ctrans('texts.' . $gateway->getTypeAlias($gateway_type_id)) . $fee_label, 'url' => URL::signedRoute('client.payments.process', [ 'company_gateway_id' => $gateway_id, 'gateway_type_id' => $gateway_type_id]) ]; } } return $payment_urls; } }