-
Notifications
You must be signed in to change notification settings - Fork 2
/
Hook.php
99 lines (92 loc) · 3 KB
/
Hook.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
namespace Acms\Plugins\Zoho;
use AcmsLogger;
use Acms\Services\Facades\Application as App;
use Acms\Services\Facades\Common;
use ACMS_POST_Form_Submit;
class Hook
{
/**
* POSTモジュール処理前
* $thisModuleのプロパティを参照・操作するなど
*
* @param ACMS_POST $thisModule
*/
public function afterPostFire($thisModule)
{
// Hook処理動作条件
if (!($thisModule instanceof ACMS_POST_Form_Submit)) {
return;
}
/** @var \Acms\Plugins\Zoho\Api $client */
$client = App::make('zoho.api');
if (is_null($client->getAccessToken())) {
return;
}
if (!$thisModule->Post->isValidAll()) {
return;
}
$step = $thisModule->Post->get('error');
if (empty($step)) {
$step = $thisModule->Get->get('step');
}
$step = $thisModule->Post->get('step', $step);
if (in_array($step, ['forbidden', 'repeated'])) {
return;
}
$id = $thisModule->Post->get('id');
$info = $thisModule->loadForm($id);
if (empty($info)) {
return;
}
try {
if (class_exists('AcmsLogger')) {
AcmsLogger::info('【Zoho plugin】Zoho CRM へデータ登録処理を開始します。');
}
$engine = new Engine($info, $thisModule->Post);
$engine->send();
if (class_exists('AcmsLogger')) {
AcmsLogger::info('【Zoho plugin】Zoho CRM へのデータ登録処理が終了しました。');
}
} catch (\ZCRMException $e) {
if ($this->isDebugMode()) {
throw $e;
}
if (class_exists('AcmsLogger')) {
AcmsLogger::error(
'【Zoho plugin】Zoho CRM へのデータ登録処理でエラーが発生しました。' ,
Common::exceptionArray($e, [
'code' => $e->getExceptionCode(),
'details' => $e->getExceptionDetails(),
]),
);
} else {
userErrorLog('ACMS Error: Zoho plugin, ' . $e->getMessage());
}
} catch (\Exception $e) {
if ($this->isDebugMode()) {
throw $e;
}
if (class_exists('AcmsLogger')) {
AcmsLogger::error('【Zoho plugin】Zoho CRM へのデータ登録処理でエラーが発生しました。' , Common::exceptionArray($e));
} else {
userErrorLog('ACMS Error: Zoho plugin, ' . $e->getMessage());
}
}
}
/**
* デバックモードかどうか
*
* @return bool
*/
private function isDebugMode(): bool
{
if (function_exists('isDebugMode')) {
return isDebugMode();
}
if (defined('DEBUG_MODE') && DEBUG_MODE) {
return true;
}
return false;
}
}