Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4131 | Rev 5837 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4131 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
 
5
namespace LeadersLinked\Library;
6
 
7
 
8
use \Firebase\JWT\JWT;
9
use GuzzleHttp\Client;
10
use Laminas\Db\Adapter\Adapter;
11
use LeadersLinked\Model\ZoomMeeting;
12
 
13
 
14
class Zoom
15
{
16
    /**
17
     *
18
     * @var Adapter
19
     */
20
    private $adapter;
21
 
22
 
23
    /**
24
     *
25
     * @var array
26
     */
27
    private $config;
28
 
29
 
30
    /**
31
     *
32
     * @param Adapter $adapter
33
     * @param array config
34
     */
35
    public function __construct($adapter, $config)
36
    {
37
        $this->adapter = $adapter;
38
        $this->config = $config;
39
    }
40
 
41
 
42
 
43
    public function add($topic, $agenda, $type, $start_time, $duration, $timezone, $password)
44
    {
45
 
46
        $base_url = $this->config['leaderslinked.zoom.base_url'];
47
        $token = $this->getAccessToken();
48
 
49
 
50
        $client = new Client([
51
            'base_uri' => $base_url,
52
        ]);
53
 
54
 
55
 
56
        if($type == ZoomMeeting::TYPE_SCHEDULED) {
57
            $json = [
58
                'topic' => $topic,
59
                'agenda' => $agenda,
60
                'type' => 2,
61
                'start_time' => $start_time,
62
                'duration' => $duration,
63
                'password' => $password,
64
                'timezone' => $timezone,
5277 efrain 65
                'settings' => [
66
                    'participant_video'=> 'true',
67
                    'auto_recording' => 'true',
68
                ]
4131 efrain 69
            ];
70
        } else {
71
            $json = [
72
                'topic' => $topic,
73
                'agenda' => $agenda,
74
                'type' => 1,
75
                'duration' => $duration,
76
                'password' => $password,
77
                'timezone' => $timezone,
78
                'settings' => [
79
                    'participant_video'=> 'true',
80
                    'auto_recording' => 'none',
81
                ]
82
            ];
83
        }
84
 
85
 
86
        $request = [
87
            'headers' => [
88
                'Authorization' => 'Bearer ' . $token
89
            ],
90
            'json' => $json,
91
        ];
92
 
93
 
94
        $response = $client->request('POST', '/v2/users/me/meetings', $request );
95
        $statusCode = $response->getStatusCode() ;
96
 
5277 efrain 97
        error_log('$statusCode = ' . $statusCode);
98
 
99
 
100
 
4131 efrain 101
        if($statusCode >= 200 && $statusCode <= 300) {
102
            $data = json_decode($response->getBody()->getContents());
103
 
104
 
105
            return [
106
                'success' => true,
107
                'data' => [
108
                    'id' => $data->id,
109
                    'uuid' => $data->uuid,
110
                    'join_url' => $data->join_url,
111
                    'password' => $data->password,
112
                ]
113
 
114
            ];
115
 
116
 
117
        } else {
118
            return [
119
                'success' => false,
120
                'data' => $response->getStatusCode()
121
            ];
122
        }
123
 
124
 
125
 
126
    }
127
 
128
 
129
    private function getAccessToken() {
130
 
131
        $api_key = $this->config['leaderslinked.zoom.api_key'];
132
        $api_secret   = $this->config['leaderslinked.zoom.api_secret'];
133
 
134
 
135
        $payload =[
136
            'iss'   => $api_key,
137
            'exp'   => time() + 3600,
138
        ];
139
        return JWT::encode($payload, $api_secret, 'HS256');
140
    }
141
 
142
 
143
}