浏览代码

Utilisation d'un bot mattermost plutot qu'un Hook

François Drouhard 5 年之前
父节点
当前提交
a76c285fd8
共有 3 个文件被更改,包括 16 次插入5 次删除
  1. 3 1
      .env
  2. 2 0
      config/services.yaml
  3. 11 4
      src/Service/Mattermost.php

+ 3 - 1
.env

@@ -38,5 +38,7 @@ MAILER_NAME="Admin vidéothèque"
 ###< symfony/swiftmailer-bundle ###
 ###< symfony/swiftmailer-bundle ###
 
 
 ###> Mattermost/Service ###
 ###> Mattermost/Service ###
-MATTERMOST_URL=url_api_hook_entrant_mattermost
+MATTERMOST_URL=https://adresse_du_serveur_mattermost
+MATTERMOST_TOKEN=Token_du_bot_mattermost
+MATTERMOST_CHANNEL_ID=Id_du_channel_dans_lequel_poster
 ###< Mattermost/Service ###
 ###< Mattermost/Service ###

+ 2 - 0
config/services.yaml

@@ -38,6 +38,8 @@ services:
     App\Service\Mattermost:
     App\Service\Mattermost:
         arguments:
         arguments:
             - '%env(MATTERMOST_URL)%'
             - '%env(MATTERMOST_URL)%'
+            - '%env(MATTERMOST_TOKEN)%'
+            - '%env(MATTERMOST_CHANNEL_ID)%'
 
 
     App\Service\FilmCreationListener:
     App\Service\FilmCreationListener:
         arguments:
         arguments:

+ 11 - 4
src/Service/Mattermost.php

@@ -13,14 +13,18 @@ use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
 class Mattermost
 class Mattermost
 {
 {
     protected $url;
     protected $url;
+    protected $token;
+    protected $channelId;
     protected $router;
     protected $router;
 
 
     /**
     /**
      * Mattermost Manager
      * Mattermost Manager
      */
      */
-    public function __construct($url, UrlGeneratorInterface $router)
+    public function __construct($url, $token, $channelId, UrlGeneratorInterface $router)
     {
     {
-        $this->url = $url;
+        $this->url = $url . "/api/v4/posts";
+        $this->token = $token;
+        $this->channelId = $channelId;
         $this->router = $router;
         $this->router = $router;
     }
     }
 
 
@@ -32,8 +36,8 @@ class Mattermost
         // fixe l'URL et les autres options appropriées
         // fixe l'URL et les autres options appropriées
         $options = array(
         $options = array(
             CURLOPT_URL => $this->url,
             CURLOPT_URL => $this->url,
-            CURLOPT_HTTPHEADER => array('Content-Type:', 'application/json'),
-            CURLOPT_POSTFIELDS  =>  '{"text": "' . $message . '"}'
+            CURLOPT_HTTPHEADER => array('Content-Type: application/json', 'Authorization: Bearer ' . $this->token),
+            CURLOPT_POSTFIELDS  =>  '{"channel_id": "' . $this->channelId . '", "message": "' . $message . '"}'
         );
         );
 
 
         curl_setopt_array($ch, $options);
         curl_setopt_array($ch, $options);
@@ -41,6 +45,9 @@ class Mattermost
         // attrape l'URL et la passe au navigateur
         // attrape l'URL et la passe au navigateur
         curl_exec($ch);
         curl_exec($ch);
 
 
+        dump($ch);
+        dump($options);
+
         // ferme la ressource cURL et libère les ressources systèmes
         // ferme la ressource cURL et libère les ressources systèmes
         curl_close($ch);
         curl_close($ch);
     }
     }