-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzoomzoom.php
269 lines (241 loc) · 7.63 KB
/
zoomzoom.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<?php
require_once 'zoomzoom.civix.php';
// phpcs:disable
use Civi\Core\Container;
use CRM_Zoomzoom_ExtensionUtil as E;
use Symfony\Component\Config\Resource\FileResource;
// phpcs:enable
/**
* Implements hook_civicrm_config().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
*/
function zoomzoom_civicrm_config(&$config) {
_zoomzoom_civix_civicrm_config($config);
}
/**
* Implements hook_civicrm_xmlMenu().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_xmlMenu
*/
function zoomzoom_civicrm_xmlMenu(&$files) {
_zoomzoom_civix_civicrm_xmlMenu($files);
}
/**
* Implements hook_civicrm_install().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install
*/
function zoomzoom_civicrm_install() {
_zoomzoom_civix_civicrm_install();
}
/**
* Implements hook_civicrm_postInstall().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall
*/
function zoomzoom_civicrm_postInstall() {
_zoomzoom_civix_civicrm_postInstall();
}
/**
* Implements hook_civicrm_uninstall().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall
*/
function zoomzoom_civicrm_uninstall() {
_zoomzoom_civix_civicrm_uninstall();
}
/**
* Implements hook_civicrm_enable().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable
*/
function zoomzoom_civicrm_enable() {
_zoomzoom_civix_civicrm_enable();
}
/**
* Implements hook_civicrm_disable().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable
*/
function zoomzoom_civicrm_disable() {
_zoomzoom_civix_civicrm_disable();
}
/**
* Implements hook_civicrm_upgrade().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade
*/
function zoomzoom_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
return _zoomzoom_civix_civicrm_upgrade($op, $queue);
}
/**
* Implements hook_civicrm_managed().
*
* Generate a list of entities to create/deactivate/delete when this module
* is installed, disabled, uninstalled.
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_managed
*/
function zoomzoom_civicrm_managed(&$entities) {
$entities[] = [
'module' => 'au.com.agileware.zoomzoom',
'name' => 'ZoomZoom_ImportZooms',
'entity' => 'Job',
'update' => 'clean',
'params' => [
'version' => 3,
'run_frequency' => 'Daily',
'name' => 'Import Zoom Webinars and Meetings',
'description' => 'Import Zoom Webinars and Zoom Meetings',
'api_entity' => 'Zoomzoom',
'api_action' => 'importzooms',
'parameters' => "day_offset=-90",
'is_active' => '0',
],
];
$entities[] = [
'module' => 'au.com.agileware.zoomzoom',
'name' => 'ZoomZoom_ImportAttendees',
'entity' => 'Job',
'update' => 'clean',
'params' => [
'version' => 3,
'run_frequency' => 'Daily',
'name' => 'Import Zoom Registrations, Attendees, Absentees',
'description' => 'Import Zoom registrations, attendees and absentees for those CiviCRM Events with a Zoom ID',
'api_entity' => 'Zoomzoom',
'api_action' => 'importattendees',
'parameters' => "day_offset=-90",
'is_active' => '0',
],
];
_zoomzoom_civix_civicrm_managed($entities);
}
/**
* Implements hook_civicrm_caseTypes().
*
* Generate a list of case-types.
*
* Note: This hook only runs in CiviCRM 4.4+.
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_caseTypes
*/
function zoomzoom_civicrm_caseTypes(&$caseTypes) {
_zoomzoom_civix_civicrm_caseTypes($caseTypes);
}
/**
* Implements hook_civicrm_angularModules().
*
* Generate a list of Angular modules.
*
* Note: This hook only runs in CiviCRM 4.5+. It may
* use features only available in v4.6+.
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_angularModules
*/
function zoomzoom_civicrm_angularModules(&$angularModules) {
_zoomzoom_civix_civicrm_angularModules($angularModules);
}
/**
* Implements hook_civicrm_alterSettingsFolders().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_alterSettingsFolders
*/
function zoomzoom_civicrm_alterSettingsFolders(&$metaDataFolders = NULL) {
_zoomzoom_civix_civicrm_alterSettingsFolders($metaDataFolders);
}
/**
* Implements hook_civicrm_entityTypes().
*
* Declare entity types provided by this module.
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
*/
function zoomzoom_civicrm_entityTypes(&$entityTypes) {
_zoomzoom_civix_civicrm_entityTypes($entityTypes);
}
/**
* Implements hook_civicrm_themes().
*/
function zoomzoom_civicrm_themes(&$themes) {
_zoomzoom_civix_civicrm_themes($themes);
}
/**
* Implements hook_civicrm_navigationMenu().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_navigationMenu
*/
function zoomzoom_civicrm_navigationMenu(&$menu) {
_zoomzoom_civix_insert_navigation_menu($menu, 'Administer', [
'label' => E::ts('Zoom Settings'),
'name' => 'zoomzoom_settings',
'url' => 'civicrm/admin/setting/zoomzoom',
'permission' => 'administer CiviCRM',
'operator' => 'OR',
'separator' => 0,
]);
_zoomzoom_civix_navigationMenu($menu);
}
/**
* Implements hook_civicrm_check().
*
* @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_check
*
* @param $messages array
* @param $statusNames array
* @param $includeDisabled bool
*/
function zoomzoom_civicrm_check(&$messages, $statusNames, $includeDisabled) {
static $msgID = 'zoomzoomOAuthTokenSetup';
if ( $statusNames && ! inArray( $msgID, $statusNames ) ) {
return;
}
if ( ! $includeDisabled && ( Civi\Api4\StatusPreference::get( FALSE )
->addWhere( 'is_active', '=', FALSE )
->addWhere( 'domain_id', '=', 'current_domain' )
->addWhere( 'name', '=', $msgID )
->execute()
->count() ) ) {
return;
}
$accountID = Civi::settings()->get( 'zoom_account_id' ) ?? FALSE;
$clientKey = Civi::settings()->get( 'zoom_client_key' ) ?? FALSE;
$clientSecret = Civi::settings()->get( 'zoom_client_secret' ) ?? FALSE;
if ( ! ( $accountID && $clientKey && $clientSecret ) ) {
$message = new CRM_Utils_Check_Message(
$msgID,
E::ts(
'Ensure that the Account ID, Client Key, and Client Secret are set in the <a href="%1">Zoom Settings</a>',
[ '1' => CRM_Utils_System::url( 'civicrm/admin/setting/zoomzoom' ) ]
),
E::ts( 'Zoom OAuth Credentials are not configured' ),
Psr\Log\LogLevel::ERROR,
'fa-error'
);
$message->addHelp( E::ts(
'For more information on getting started with the Zoom extension, see instructions in the <a href="%1">readme file</a>.',
[ '1' => 'https://github.com/agileware/au.com.agileware.zoomzoom/blob/master/README.md#getting-started' ]
) );
$messages[] = $message;
}
}
/**
* Implements hook_civicrm_container()
*
* @return void
*/
function zoomzoom_civicrm_container($container) {
$container->addResource(new FileResource(E::path('CRM/Zoomzoom/Tokens.php')));
$dispatcher = $container->findDefinition('dispatcher');
$dispatcher->addMethodCall('addListener', ['civi.token.eval', ['CRM_Zoomzoom_Tokens', 'evaluate']]);
$dispatcher->addMethodCall('addListener', ['civi.token.list', ['CRM_Zoomzoom_Tokens', 'register']]);
}
/**
* Implements hook_civicrm_buildForm()
*
* @param $page
*/
function zoomzoom_civicrm_buildForm($formName, &$form) {
CRM_Core_Resources::singleton()->addStyleFile('au.com.agileware.zoomzoom', 'css/zoomzoom.css', -50, 'html-header');
}