-
Notifications
You must be signed in to change notification settings - Fork 1
/
PicqerOrderPusher.php
executable file
·81 lines (63 loc) · 2.17 KB
/
PicqerOrderPusher.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
namespace PicqerOrderPusher;
use Shopware\Components\Plugin;
use Shopware\Components\Plugin\Context\ActivateContext;
use Shopware\Components\Plugin\Context\DeactivateContext;
use Shopware\Components\Plugin\Context\InstallContext;
use Shopware\Components\Plugin\Context\UpdateContext;
use Shopware\Components\Plugin\Context\UninstallContext;
use PicqerOrderPusher\Components\PicqerWebhookCall;
class PicqerOrderPusher extends Plugin
{
public static function getSubscribedEvents()
{
return [
'sOrder::sSaveOrder::after' => 'pushOrder',
'sOrder::setPaymentStatus::after' => 'pushOrder',
'sOrder::setOrderStatus::after' => 'pushOrder',
];
}
public function install(InstallContext $context)
{
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
require_once __DIR__ . '/vendor/autoload.php';
}
parent::install($context);
}
public function update(UpdateContext $context)
{
$context->scheduleClearCache(InstallContext::CACHE_LIST_DEFAULT);
parent::update($context);
}
public function uninstall(UninstallContext $context)
{
if ($context->keepUserData()) {
return;
}
parent::uninstall($context);
}
public function deactivate(DeactivateContext $context)
{
$context->scheduleClearCache(InstallContext::CACHE_LIST_DEFAULT);
parent::deactivate($context);
}
public function activate(ActivateContext $context)
{
$context->scheduleClearCache(InstallContext::CACHE_LIST_DEFAULT);
parent::activate($context);
}
public function pushOrder()
{
$config = Shopware()->Container()->get('picqer_order_pusher.config');
$orderData = $this->getOrderPusherData();
$picqerWebhookCall = new PicqerWebhookCall($config);
$picqerWebhookCall->sendRequest($orderData, PicqerWebhookCall::METHOD_POST);
}
private function getOrderPusherData()
{
$this->session = Shopware()->Session();
$orderData = [];
$orderData['sOrderNumber'] = $this->session['sOrderVariables']['sOrderNumber'];
return $orderData;
}
}