mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
67 lines
1.5 KiB
PHP
67 lines
1.5 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace console\models;
|
|
|
|
use common\models\WebHook;
|
|
use common\models\WebHookEvent;
|
|
use Webmozart\Assert\Assert;
|
|
use Yii;
|
|
use yii\base\Model;
|
|
|
|
class WebHookForm extends Model {
|
|
|
|
public $url;
|
|
|
|
public $secret;
|
|
|
|
public $events = [];
|
|
|
|
private $webHook;
|
|
|
|
public function __construct(WebHook $webHook, array $config = []) {
|
|
parent::__construct($config);
|
|
$this->webHook = $webHook;
|
|
}
|
|
|
|
public function rules(): array {
|
|
return [
|
|
[['url'], 'required'],
|
|
[['url'], 'url'],
|
|
[['secret'], 'string'],
|
|
[['events'], 'in', 'range' => static::getEvents(), 'allowArray' => true],
|
|
];
|
|
}
|
|
|
|
public function save(): bool {
|
|
if (!$this->validate()) {
|
|
return false;
|
|
}
|
|
|
|
$transaction = Yii::$app->db->beginTransaction();
|
|
|
|
$webHook = $this->webHook;
|
|
$webHook->url = $this->url;
|
|
$webHook->secret = $this->secret;
|
|
Assert::true($webHook->save(), 'Cannot save webhook.');
|
|
|
|
foreach ($this->events as $event) {
|
|
$eventModel = new WebHookEvent();
|
|
$eventModel->webhook_id = $webHook->id;
|
|
$eventModel->event_type = $event;
|
|
Assert::true($eventModel->save(), 'Cannot save webhook event.');
|
|
}
|
|
|
|
$transaction->commit();
|
|
|
|
return true;
|
|
}
|
|
|
|
public static function getEvents(): array {
|
|
return [
|
|
'account.edit',
|
|
];
|
|
}
|
|
|
|
}
|