Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16766 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16298 anderson 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\Cache\Storage\Adapter\AbstractAdapter;
11
use Laminas\Db\Adapter\Adapter;
12
use LeadersLinked\Model\ZoomMeeting;
13
 
14
 
15
class Zoom
16
{
17
    const CACHE_OAUTH_TOOKEN = 'zoom_oauth_tooken';
18
 
19
    /**
20
     *
21
     * @var Adapter
22
     */
23
    private $adapter;
24
 
25
 
26
    /**
27
     *
28
     * @var array
29
     */
30
    private $config;
31
 
32
 
33
    /**
34
     *
35
     * @var AbstractAdapter
36
     */
37
    private $cache;
38
 
39
 
40
 
41
    /**
42
     *
43
     * @param Adapter $adapter
44
     * @param array config
45
     * @param AbstractAdapter $cache
46
     */
47
    public function __construct($adapter, $config, $cache)
48
    {
49
        $this->adapter = $adapter;
50
        $this->config = $config;
51
        $this->cache = $cache;
52
    }
53
 
54
 
55
 
56
    public function addMeeting($access_token, $topic, $agenda, $type, $start_time, $duration, $timezone, $password)
57
    {
58
 
59
        $base_url = $this->config['leaderslinked.zoom.base_url'];
60
 
61
 
62
 
63
        $client = new Client([
64
            'base_uri' => $base_url,
65
        ]);
66
 
67
 
68
 
69
        if($type == ZoomMeeting::TYPE_SCHEDULED) {
70
            $json = [
71
                'topic' => $topic,
72
                'agenda' => $agenda,
73
                'type' => 2,
74
                'start_time' => $start_time,
75
                'duration' => $duration,
76
                'password' => $password,
77
                'timezone' => $timezone,
78
                'settings' => [
79
                    'participant_video'=> 'true',
80
                    'auto_recording' => 'true',
81
                ]
82
            ];
83
        } else {
84
            $json = [
85
                'topic' => $topic,
86
                'agenda' => $agenda,
87
                'type' => 1,
88
                'duration' => $duration,
89
                'password' => $password,
90
                'timezone' => $timezone,
91
                'settings' => [
92
                    'participant_video'=> 'true',
93
                    'auto_recording' => 'none',
94
                ]
95
            ];
96
        }
97
 
98
 
99
        $request = [
100
            'headers' => [
101
                'Authorization' => 'Bearer ' . $access_token
102
            ],
103
            'json' => $json,
104
        ];
105
 
106
 
107
        $response = $client->request('POST', '/v2/users/me/meetings', $request );
108
        $statusCode = $response->getStatusCode() ;
109
 
110
       // error_log('$statusCode = ' . $statusCode);
111
 
112
 
113
 
114
        if($statusCode >= 200 && $statusCode <= 300) {
115
            $data = json_decode($response->getBody()->getContents());
116
 
117
 
118
            return [
119
                'success' => true,
120
                'data' => [
121
                    'id' => $data->id,
122
                    'uuid' => $data->uuid,
123
                    'join_url' => $data->join_url,
124
                    'password' => $data->password,
125
                ]
126
 
127
            ];
128
 
129
 
130
        } else {
131
            return [
132
                'success' => false,
133
                'data' => $response->getStatusCode()
134
            ];
135
        }
136
 
137
 
138
 
139
    }
140
 
141
    public function getMeetings($access_token, $next_page_token)
142
    {
143
        $base_url = $this->config['leaderslinked.zoom.base_url'];
144
        $client = new Client([
145
 
146
            'base_uri' => $base_url,
147
        ]);
148
 
149
        $request = [
150
            'headers' => [
151
                'Authorization' => 'Bearer '. $access_token
152
            ],
153
            'type' => 'scheduled'
154
        ];
155
 
156
        if($next_page_token) {
157
            $request['query'] = ['next_page_token' => $next_page_token];
158
        }
159
 
160
 
161
        $response = $client->request('GET', '/v2/users/me/meetings', $request);
162
        $statusCode = $response->getStatusCode() ;
163
 
164
        if($statusCode >= 200 && $statusCode <= 300) {
165
            $meetings = json_decode($response->getBody()->getContents());
166
 
167
            return [
168
                'success' =>  true,
169
                'data' => $meetings
170
            ];
171
 
172
        } else {
173
            return [
174
                'success' => false,
175
                'data' => $response->getStatusCode()
176
            ];
177
        }
178
    }
179
 
180
 
181
 
182
 
183
 
184
    public  function getOAuthAccessToken()
185
    {
186
 
187
 
188
        if($this->cache->hasItem(self::CACHE_OAUTH_TOOKEN)) {
189
            $data = $this->cache->getItem(self::CACHE_OAUTH_TOOKEN);
190
 
191
            return [
192
                'success' => true,
193
                'data' => $data->accesstoken
194
 
195
            ];
196
        }
197
 
198
 
199
 
200
        $account_id     = $this->config['leaderslinked.zoom.account_id'];
201
        $client_id      = $this->config['leaderslinked.zoom.client_id'];
202
        $client_secret  = $this->config['leaderslinked.zoom.client_secret'];
203
 
204
        $client_token_base64_encode =  base64_encode($client_id . ':' . $client_secret);
205
 
206
 
207
        $timecalled = time();
208
 
209
        $client = new Client([
210
            'base_uri' => 'https://zoom.us',
211
        ]);
212
 
213
        $request = [
214
            'headers' => [
215
                'Authorization' => 'Basic ' . $client_token_base64_encode,
216
                'Accept' =>  'application/json'
217
            ],
218
            'form_params' => [
219
                'grant_type' => 'account_credentials',
220
                'account_id' => $account_id
221
            ],
222
        ];
223
 
224
 
225
        $response = $client->request('POST', '/oauth/token', $request );
226
        $statusCode = $response->getStatusCode() ;
227
 
228
 
229
        if($statusCode >= 200 && $statusCode <= 300) {
230
            $response = json_decode($response->getBody()->getContents());
231
 
232
            $requiredscopes = [
233
                'meeting:read:admin',
234
                'meeting:write:admin',
235
                'user:read:admin',
236
            ];
237
            $scopes = explode(' ', $response->scope);
238
            $missingscopes = array_diff($requiredscopes, $scopes);
239
 
240
            if (!empty($missingscopes)) {
241
                $missingscopes = implode(', ', $missingscopes);
242
 
243
 
244
                return [
245
                    'success' => false,
246
                    'data' => 'ERROR_OAUTH_MISSING_SCOPES ' . $missingscopes
247
                ];
248
 
249
 
250
 
251
 
252
            }
253
            /*
254
            echo '<pre>';
255
            print_r($response);
256
            echo '</pre>';
257
            */
258
 
259
 
260
 
261
            if (isset($response->expires_in)) {
262
                $expires = $response->expires_in + $timecalled;
263
            } else {
264
                $expires = 3599 + $timecalled;
265
            }
266
 
267
            $obj = new \stdClass();
268
            $obj->accesstoken   = $response->access_token;
269
            $obj->expires       = $expires;
270
            $obj->scopes        = $scopes;
271
 
272
            $this->cache->setItem(self::CACHE_OAUTH_TOOKEN, $obj);
273
 
274
            return [
275
                'success' => true,
276
                'data' => $response->access_token
277
            ];
278
 
279
 
280
        } else {
281
            return [
282
                'success' => false,
283
                'data' => $response->getStatusCode()
284
            ];
285
 
286
 
287
            return $obj;
288
 
289
        }
290
    }
291
 
292
 
293
}