Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
4113 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
 
7
use \Firebase\JWT\JWT;
8
use GuzzleHttp\Client;
9
 
10
use Laminas\Db\Adapter\AdapterInterface;
6749 efrain 11
use LeadersLinked\Cache\CacheInterface;
4113 efrain 12
use Laminas\Mvc\Controller\AbstractActionController;
13
use Laminas\Log\LoggerInterface;
14
use Laminas\View\Model\JsonModel;
5837 efrain 15
use LeadersLinked\Library\Zoom;
4113 efrain 16
 
17
class ZoomController extends AbstractActionController
18
{
19
    /**
20
     *
21
     * @var AdapterInterface
22
     */
23
    private $adapter;
24
 
25
 
26
    /**
27
     *
6749 efrain 28
     * @var CacheInterface
4113 efrain 29
     */
30
    private $cache;
31
 
32
    /**
33
     *
34
     * @var  LoggerInterface
35
     */
36
    private $logger;
37
 
38
    /**
39
     *
40
     * @var array
41
     */
42
    private $config;
43
 
44
 
45
 
46
 
47
    /**
48
     *
49
     * @param AdapterInterface $adapter
6749 efrain 50
     * @param CacheInterface $cache
4113 efrain 51
     * @param LoggerInterface $logger
52
     * @param array $config
53
     */
54
    public function __construct($adapter, $cache , $logger, $config)
55
    {
56
        $this->adapter      = $adapter;
57
        $this->cache        = $cache;
58
        $this->logger       = $logger;
59
        $this->config       = $config;
60
    }
61
 
62
 
63
    public function indexAction()
64
    {
5837 efrain 65
 
4113 efrain 66
 
67
        $data = [
68
            'success' => false,
69
            'data' => 'ERROR_METHOD_NOT_ALLOWED'
70
        ];
71
 
72
 
5837 efrain 73
 
4113 efrain 74
        return new JsonModel($data);
75
    }
76
 
4131 efrain 77
    public function addAction()
4113 efrain 78
    {
4419 efrain 79
        /*
4131 efrain 80
        $currentUserPlugin = $this->plugin('currentUserPlugin');
81
        $currentUser = $currentUserPlugin->getUser();
4113 efrain 82
 
83
        $request = $this->getRequest();
84
 
4131 efrain 85
      //  if($request->isPost()) {
86
 
4113 efrain 87
            $base_url = $this->config['leaderslinked.zoom.base_url'];
88
            $token = $this->getAccessToken();
89
 
90
 
91
            $client = new Client([
92
 
93
                'base_uri' => $base_url,
94
            ]);
95
 
96
            $response = $client->request('POST', '/v2/users/me/meetings', [
97
                'headers' => [
98
                    'Authorization' => 'Bearer ' . $token
99
                ],
100
                'json' => [
101
                    'topic' => 'Let s Learn WordPress',
4131 efrain 102
                    'agenda' => 'Description Let s Learn WordPress',
4113 efrain 103
                    'type' => 2,
104
                    'start_time' => '2023-01-30T20:30:00',
105
                    'duration' => '30', // 30 mins
106
                    'password' => '123456',
107
                    'timezone' => 'America/Caracas',
4131 efrain 108
                    'settings' => [
109
                        'participant_video'=> 'true',
110
                        'auto_recording' => 'none',
111
                    ]
4113 efrain 112
                ],
113
            ]);
114
 
115
 
4131 efrain 116
 
4113 efrain 117
 
4131 efrain 118
            $data = json_decode($response->getBody()->getContents());
119
            echo '<pre>';
120
            print_r($data);
121
            echo '</pre>';
122
            exit;
123
 
124
 
125
            //echo "Join URL: ". $data->join_url;
126
            //echo "<br>";
127
            //echo "Meeting Password: ". $data->password;
4113 efrain 128
 
4131 efrain 129
 
4419 efrain 130
       } else {
4113 efrain 131
            $data = [
132
                'success' => false,
133
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
134
            ];
135
 
136
            return new JsonModel($data);
137
        }
138
 
4419 efrain 139
        */
4113 efrain 140
 
4419 efrain 141
        $token = 'EAAJaDxnm8uIBAGYjnYpOvjzm1BXbBgTtqfwn4YbagqIBGxfpWVZBObWtcnvfTJB6hMfHLWZBgG7dQ2O2UYMqZALYSLIQZC8swoNsHNYe3AMBkOjkt7YZBuIfXe22yyTgUZCBzGlsjbs0f72nNDvMlGNQlkCYNi3ZCDdXH61z9nW9xxUcdAnhk6M';
142
        $token = 'EAAJaDxnm8uIBAF3XfBml8yh9PqHOfO0UcwYALZAmoZCSPx6IkNZCRaVQaSWJfQALBqaRZCMziTddfvKgiVs1jwftg2sMyZBGixRTSDcXfvOv3nO4gZA2pCyruxa5iA1ZB01C83o2ZAg1Lnb07jeGF2C4d1Tauu3ZB9sZCJTkY4jMPt1Gnx8tpm5MAd';
143
        $client = new Client([
144
 
145
            'base_uri' => 'https://graph.facebook.com/v15.0',
146
        ]);
147
 
148
        //$to = '584244343638';
149
        //$to = '59898137899';
150
        $to = '584122788242';
151
 
152
        $response = $client->request('POST', '/111473331819706/messages', [
153
            'headers' => [
154
                'Authorization' => 'Bearer ' . $token
155
            ],
156
            'json' => [
157
                'messaging_product' => 'whatsapp',
158
                'recipient_type' => 'individual',
159
                'to' => $to,
160
 
161
                'type' => 'text',
162
                'text' => [
163
                    'preview_url' =>  false,
164
                    'body' => 'MESSAGE_CONTENT'
165
                ]
166
                /*
167
                'type' => 'template',
168
                'template' => [
169
                    'name' => 'hello_world',
170
                    'language' => [
171
                        'code' => 'en_US'
172
                    ]
173
                ] */
174
            ],
175
        ]);
176
 
177
        echo '<pre>';
178
       print_r($response->getBody()->getContents());
179
       echo '</pre>';
180
       exit;
181
 
4113 efrain 182
    }
183
 
184
    public function listingAction()
185
    {
186
        $request = $this->getRequest();
187
 
5837 efrain 188
        if($request->isGet()) {
4113 efrain 189
 
190
 
5837 efrain 191
            $zoom = new Zoom($this->adapter, $this->config, $this->cache);
192
            $response =  $zoom->getOAuthAccessToken();
4113 efrain 193
 
5837 efrain 194
 
4113 efrain 195
 
5837 efrain 196
            if($response['success']) {
197
                $next_page_token = $this->params()->fromRoute('next_page');
4113 efrain 198
 
5837 efrain 199
 
200
                $access_token = $response['data'];
201
                $response = $zoom->getMeetings($access_token, $next_page_token) ;
202
                return new JsonModel($response);
203
 
204
 
205
            } else {
206
               return new JsonModel($response);
4113 efrain 207
            }
208
 
5837 efrain 209
 
4113 efrain 210
 
5837 efrain 211
 
4113 efrain 212
        } else {
213
            $data = [
214
                'success' => false,
215
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
216
            ];
217
 
218
 
219
        }
220
 
5837 efrain 221
        return new JsonModel($data);
4113 efrain 222
    }
223
 
224
    public function  deleteAction()
225
    {
226
        $request = $this->getRequest();
227
 
228
        //if($request->isPost()) {
229
 
230
            $meeting_id =  $this->params()->fromRoute('id');
231
 
232
 
233
 
234
            $base_url = $this->config['leaderslinked.zoom.base_url'];
235
            $token = $this->getAccessToken();
236
 
237
            $client = new Client([
238
                'base_uri' => $base_url,
239
            ]);
240
 
241
            $response = $client->request('DELETE', '/v2/meetings/' .  $meeting_id, [
242
                'headers' => [
243
                    'Authorization' => 'Bearer ' .  $token
244
                ]
245
            ]);
246
 
247
 
248
            echo 'StatusCode : ' . $response->getStatusCode();
249
            exit;
250
 
251
            /*
252
 
253
            if (204 == $response->getStatusCode()) {
254
                $data = [
255
                    'success' => true,
256
                    'data' => 'Meeting deleted.'
257
                ];
258
            } else {
259
                $data = [
260
                    'success' => false,
261
                    'data' => $response->getBody()->getContents()
262
                ];
263
            }
264
 
265
 
266
        } else {
267
            $data = [
268
                'success' => false,
269
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
270
            ];
271
 
272
 
273
        }
274
 
275
        return new JsonModel($data);*/
276
    }
277
 
278
    public function participantsAction()
279
    {
280
        $request = $this->getRequest();
281
 
282
       // if($request->isGet()) {
283
 
284
            $meeting_id =  $this->params()->fromRoute('id');
285
 
286
 
287
 
288
            $base_url = $this->config['leaderslinked.zoom.base_url'];
289
            $token = $this->getAccessToken();
290
 
291
            $client = new Client([
292
                'base_uri' => $base_url,
293
            ]);
294
 
295
            $response = $client->request('GET', '/v2/past_meetings/' . $meeting_id , [
296
                'headers' => [
297
                    'Authorization' => 'Bearer '. $token
298
                ]
299
            ]);
300
 
301
            print_r($response->getBody()->getContents());
302
            exit;
303
 
304
            /*
305
            $data = json_decode($response->getBody());
306
            if ( !empty($data) ) {
307
                foreach ( $data->participants as $p ) {
308
                    $name = $p->name;
309
                    $email = $p->user_email;
310
                    echo "Name: $name";
311
                    echo "Email: $email";
312
                }
313
            }
314
 
315
 
316
        } else {
317
            $data = [
318
                'success' => false,
319
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
320
            ];
321
 
322
 
323
        }
324
 
325
        return new JsonModel($data);*/
326
    }
327
 
328
 
329
 
330
 
331
 
332
}