Passed
Push — master ( 1b84e5...95ac4e )
by Florian
42s queued 12s
created

Profile::sendRequest()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 15
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 9
c 1
b 0
f 0
nc 1
nop 3
dl 0
loc 15
rs 9.9666
1
<?php
2
3
/**
4
 * PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
16
 *
17
 * PHP version 5
18
 *
19
 * @category  Payone
20
 * @package   Payone_Magento2_Plugin
21
 * @author    FATCHIP GmbH <[email protected]>
22
 * @copyright 2003 - 2020 Payone GmbH
23
 * @license   <http://www.gnu.org/licenses/> GNU Lesser General Public License
24
 * @link      http://www.payone.de
25
 */
26
27
namespace Payone\Core\Model\Api\Request\Genericpayment;
28
29
use Payone\Core\Model\Methods\Ratepay\RatepayBase;
30
31
/**
32
 * Class for the PAYONE Server API request genericpayment - "profile"
33
 */
34
class Profile extends Base
35
{
36
    /**
37
     * Send request to PAYONE Server-API with request-type "genericpayment" and action "profile"
38
     *
39
     * @param  string $sShopId
40
     * @param  string $sCurrency
41
     * @param  string $sMode
42
     * @return array
43
     */
44
    public function sendRequest($sShopId, $sCurrency, $sMode)
45
    {
46
        $this->addParameter('request', 'genericpayment');
47
        $this->addParameter('add_paydata[action]', 'profile');
48
49
        $this->addParameter('mode', $sMode);
50
        $this->addParameter('aid', $this->shopHelper->getConfigParam('aid')); // ID of PayOne Sub-Account
51
        $this->addParameter('currency', $sCurrency);
52
53
        $this->addParameter('add_paydata[shop_id]', $sShopId);
54
55
        $this->addParameter('clearingtype', 'fnc');
56
        $this->addParameter('financingtype', RatepayBase::METHOD_RATEPAY_SUBTYPE_INVOICE);
57
58
        return $this->send();
59
    }
60
}
61