-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathModule.php
1712 lines (1529 loc) · 57.2 KB
/
Module.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* This code is licensed under AGPLv3 license or Afterlogic Software License
* if commercial version of the product was purchased.
* For full statements of the licenses see LICENSE-AFTERLOGIC and LICENSE-AGPL3 files.
*/
namespace Aurora\Modules\Core;
use Aurora\Api;
use Aurora\Modules\Core\Models\User;
use Aurora\System\Enums\UserRole;
use Aurora\System\Exceptions\ApiException;
use Aurora\System\Notifications;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\NullOutput;
use Symfony\Component\Console\Output\BufferedOutput;
use Aurora\System\Logger;
use Aurora\System\Managers\Integrator;
/**
* System module that provides core functionality such as User management, Tenants management.
*
* @license https://www.gnu.org/licenses/agpl-3.0.html AGPL-3.0
* @license https://afterlogic.com/products/common-licensing Afterlogic Software License
* @copyright Copyright (c) 2023, Afterlogic Corp.
*
* @property Settings $oModuleSettings
*
* @package Modules
*/
class Module extends \Aurora\System\Module\AbstractModule
{
use Traits\Groups, Traits\Tenants, Traits\Channels, Traits\Users {
Traits\Users::initTrait insteadof Traits\Groups, Traits\Tenants, Traits\Channels;
Traits\Users::initTrait as initUsersTrait;
Traits\Groups::initTrait as initGroupsTrait;
Traits\Tenants::initTrait as initTenantsTrait;
Traits\Channels::initTrait as initChannelsTrait;
}
protected $oTenantsManager = null;
protected $oChannelsManager = null;
protected $oUsersManager = null;
protected $oIntegratorManager = null;
/**
* @return Module
*/
public static function getInstance()
{
return parent::getInstance();
}
/**
* @return Module
*/
public static function Decorator()
{
return parent::Decorator();
}
/**
* @return Settings
*/
public function getModuleSettings()
{
return $this->oModuleSettings;
}
/**
* @return \Aurora\System\Managers\Integrator
*/
public function getIntegratorManager()
{
if ($this->oIntegratorManager === null) {
$this->oIntegratorManager = new Integrator();
}
return $this->oIntegratorManager;
}
/***** private functions *****/
/**
* Initializes Core Module.
*
* @ignore
*/
public function init()
{
$this->aErrors = [
Enums\ErrorCodes::ChannelDoesNotExist => $this->i18N('ERROR_CHANNEL_NOT_EXISTS'),
Enums\ErrorCodes::TenantAlreadyExists => $this->i18N('ERROR_TENANT_ALREADY_EXISTS'),
Enums\ErrorCodes::GroupAlreadyExists => $this->i18N('ERROR_GROUP_ALREADY_EXISTS'),
Enums\ErrorCodes::MySqlConfigError => 'Please make sure your PHP/MySQL environment meets the minimal system requirements.',
];
$this->initGroupsTrait();
$this->initChannelsTrait();
$this->initTenantsTrait();
$this->initUsersTrait();
$this->denyMethodsCallByWebApi([
'Authenticate',
'GetAccountUsedToAuthorize',
'GetDigestHash',
'VerifyPassword',
'SetAuthDataAndGetAuthToken',
'GetBlockedUser',
'BlockUser',
'IsBlockedUser',
'CheckIpReputation'
]);
}
/**
* Recursively deletes temporary files and folders on time.
*
* @param string $sTempPath Path to the temporary folder.
* @param int $iTime2Kill Interval in seconds at which files needs removing.
* @param int $iNow Current Unix timestamp.
*/
protected function removeDirByTime($sTempPath, $iTime2Kill, $iNow)
{
$iFileCount = 0;
if (@is_dir($sTempPath)) {
$rDirH = @opendir($sTempPath);
if ($rDirH) {
while (($sFile = @readdir($rDirH)) !== false) {
if ('.' !== $sFile && '..' !== $sFile) {
if (@is_dir($sTempPath . '/' . $sFile)) {
$this->removeDirByTime($sTempPath . '/' . $sFile, $iTime2Kill, $iNow);
} else {
$iFileCount++;
}
}
}
@closedir($rDirH);
}
if ($iFileCount > 0) {
if ($this->removeFilesByTime($sTempPath, $iTime2Kill, $iNow)) {
@rmdir($sTempPath);
}
} else {
@rmdir($sTempPath);
}
}
}
/**
* Recursively deletes temporary files on time.
*
* @param string $sTempPath Path to the temporary folder.
* @param int $iTime2Kill Interval in seconds at which files needs removing.
* @param int $iNow Current Unix timestamp.
*
* @return bool
*/
protected function removeFilesByTime($sTempPath, $iTime2Kill, $iNow)
{
$bResult = true;
if (@is_dir($sTempPath)) {
$rDirH = @opendir($sTempPath);
if ($rDirH) {
while (($sFile = @readdir($rDirH)) !== false) {
if ($sFile !== '.' && $sFile !== '..') {
if ($iNow - filemtime($sTempPath . '/' . $sFile) > $iTime2Kill) {
@unlink($sTempPath . '/' . $sFile);
} else {
$bResult = false;
}
}
}
@closedir($rDirH);
}
}
return $bResult;
}
/***** private functions *****/
/***** public functions *****/
public function IsModuleExists($Module)
{
return Api::GetModuleManager()->ModuleExists($Module);
}
/**
*
* @return string
*/
public function GetVersion()
{
return Api::Version();
}
/**
* Clears temporary files by cron.
*
* @ignore
* @todo check if it works.
*
* @return bool
*/
protected function ClearTempFiles()
{
$sTempPath = Api::DataPath() . '/temp';
if (@is_dir($sTempPath)) {
$iNow = time();
$iTime2Run = $this->oModuleSettings->CronTimeToRunSeconds;
$iTime2Kill = $this->oModuleSettings->CronTimeToKillSeconds;
$sDataFile = $this->oModuleSettings->CronTimeFile;
$iFiletTime = -1;
if (@file_exists(Api::DataPath() . '/' . $sDataFile)) {
$iFiletTime = (int) @file_get_contents(Api::DataPath() . '/' . $sDataFile);
}
if ($iFiletTime === -1 || $iNow - $iFiletTime > $iTime2Run) {
$this->removeDirByTime($sTempPath, $iTime2Kill, $iNow);
@file_put_contents(Api::DataPath() . '/' . $sDataFile, $iNow);
}
}
return true;
}
/***** public functions *****/
/***** public functions might be called with web API *****/
/**
* @apiDefine Core Core Module
* System module that provides core functionality such as User management, Tenants management
*/
/**
* @api {post} ?/Api/ DoServerInitializations
* @apiName DoServerInitializations
* @apiGroup Core
* @apiDescription Does some pending actions to be executed when you log in.
*
* @apiHeader {string} Authorization "Bearer " + Authentication token which was received as the result of Core.Login method.
* @apiHeaderExample {json} Header-Example:
* {
* "Authorization": "Bearer 32b2ecd4a4016fedc4abee880425b6b8"
* }
*
* @apiParam {string=Core} Module Module name.
* @apiParam {string=DoServerInitializations} Method Method name.
*
* @apiParamExample {json} Request-Example:
* {
* Module: 'Core',
* Method: 'DoServerInitializations'
* }
*
* @apiSuccess {object[]} Result Array of response objects.
* @apiSuccess {string} Result.Module Module name.
* @apiSuccess {string} Result.Method Method name.
* @apiSuccess {bool} Result.Result Indicates if server initializations were made successfully.
* @apiSuccess {int} [Result.ErrorCode] Error code.
*
* @apiSuccessExample {json} Success response example:
* {
* Module: 'Core',
* Method: 'DoServerInitializations',
* Result: true
* }
*
* @apiSuccessExample {json} Error response example:
* {
* Module: 'Core',
* Method: 'DoServerInitializations',
* Result: false,
* ErrorCode: 102
* }
*/
/**
* Does some pending actions to be executed when you log in.
*
* @return bool
*/
public function DoServerInitializations($Timezone = '')
{
Api::checkUserRoleIsAtLeast(UserRole::Customer);
$result = true;
$oCacher = Api::Cacher();
$bDoGC = false;
if ($oCacher && $oCacher->IsInited()) {
$iTime = $oCacher->GetTimer('Cache/ClearFileCache');
if (0 === $iTime || $iTime + 60 * 60 * 24 < time()) {
if ($oCacher->SetTimer('Cache/ClearFileCache')) {
$bDoGC = true;
}
}
}
if ($bDoGC) {
Api::Log('GC: FileCache / Start');
$oApiFileCache = new \Aurora\System\Managers\Filecache();
$oApiFileCache->gc();
$oCacher->gc();
Api::Log('GC: FileCache / End');
}
return $result;
}
/**
* @api {post} ?/Api/ Ping
* @apiName Ping
* @apiGroup Core
* @apiDescription Method is used for checking Internet connection.
*
* @apiParam {string=Core} Module Module name.
* @apiParam {string=Ping} Method Method name.
*
* @apiParamExample {json} Request-Example:
* {
* Module: 'Core',
* Method: 'Ping'
* }
*
* @apiSuccess {object[]} Result Array of response objects.
* @apiSuccess {string} Result.Module Module name.
* @apiSuccess {string} Result.Method Method name.
* @apiSuccess {string} Result.Result Just a string to indicate that connection to backend is working.
* @apiSuccess {int} [Result.ErrorCode] Error code.
*
* @apiSuccessExample {json} Success response example:
* {
* Module: 'Core',
* Method: 'Ping',
* Result: 'Pong'
* }
*/
/**
* Method is used for checking Internet connection.
*
* @return 'Pong'
*/
public function Ping()
{
Api::checkUserRoleIsAtLeast(UserRole::Anonymous);
return 'Pong';
}
/**
* @api {post} ?/Api/ GetAppData
* @apiName GetAppData
* @apiGroup Core
* @apiDescription Obtains a list of settings for each module for the current user.
*
* @apiParam {string=Core} Module Module name.
* @apiParam {string=GetAppData} Method Method name.
*
* @apiParamExample {json} Request-Example:
* {
* Module: 'Core',
* Method: 'GetAppData'
* }
*
* @apiSuccess {object[]} Result Array of response objects.
* @apiSuccess {string} Result.Module Module name.
* @apiSuccess {string} Result.Method Method name.
* @apiSuccess {string} Result.Result List of settings for each module for the current user.
* @apiSuccess {int} [Result.ErrorCode] Error code.
*
* @apiSuccessExample {json} Success response example:
* {
* Module: 'Core',
* Method: 'GetAppData',
* Result: {
* User: {Id: 0, Role: 4, Name: "", PublicId: ""},
* Core: { ... },
* Contacts: { ... },
* ...
* CoreWebclient: { ... },
* ...
* }
* }
*/
/**
* Obtains a list of settings for each module for the current user.
*
* @return array
*/
public function GetAppData()
{
$oApiIntegrator = $this->getIntegratorManager();
return $oApiIntegrator->appData();
}
/**
* @api {post} ?/Api/ GetSettings
* @apiName GetSettings
* @apiGroup Core
* @apiDescription Obtains list of module settings for authenticated user.
*
* @apiHeader {string} [Authorization] "Bearer " + Authentication token which was received as the result of Core.Login method.
* @apiHeaderExample {json} Header-Example:
* {
* "Authorization": "Bearer 32b2ecd4a4016fedc4abee880425b6b8"
* }
*
* @apiParam {string=Core} Module Module name.
* @apiParam {string=GetSettings} Method Method name.
*
* @apiParamExample {json} Request-Example:
* {
* Module: 'Core',
* Method: 'GetSettings'
* }
*
* @apiSuccess {object[]} Result Array of response objects.
* @apiSuccess {string} Result.Module Module name.
* @apiSuccess {string} Result.Method Method name.
* @apiSuccess {mixed} Result.Result List of module settings in case of success, otherwise **false**.
* @apiSuccess {string} Result.Result.SiteName Site name.
* @apiSuccess {string} Result.Result.Language Language of interface.
* @apiSuccess {int} Result.Result.TimeFormat Time format.
* @apiSuccess {string} Result.Result.DateFormat Date format.
* @apiSuccess {bool} Result.Result.AutodetectLanguage Indicates if language should be taken from browser.
* @apiSuccess {object} Result.Result.EUserRole Enumeration with user roles.
* @apiSuccess {string} [Result.Result.DBHost] Database host is returned only if super administrator is authenticated.
* @apiSuccess {string} [Result.Result.DBName] Database name is returned only if super administrator is authenticated.
* @apiSuccess {string} [Result.Result.DBLogin] Database login is returned only if super administrator is authenticated.
* @apiSuccess {string} [Result.Result.AdminLogin] Super administrator login is returned only if super administrator is authenticated.
* @apiSuccess {bool} [Result.Result.AdminHasPassword] Indicates if super administrator has set up password. It is returned only if super administrator is authenticated.
* @apiSuccess {string} [Result.Result.AdminLanguage] Super administrator language is returned only if super administrator is authenticated.
* @apiSuccess {bool} [Result.Result.IsSystemConfigured] Indicates if 'data' folder exist and writable and encryption key was generated.
* @apiSuccess {bool} [Result.Result.EncryptionKeyNotEmpty] Indicates if encryption key was generated. It is returned only if super administrator is authenticated.
* @apiSuccess {bool} [Result.Result.EnableLogging] Indicates if logging is enabled. It is returned only if super administrator is authenticated.
* @apiSuccess {bool} [Result.Result.EnableEventLogging] Indicates if event logging is enabled. It is returned only if super administrator is authenticated.
* @apiSuccess {string} [Result.Result.LoggingLevel] Value of logging level. It is returned only if super administrator is authenticated.
* @apiSuccess {int} [Result.ErrorCode] Error code.
*
* @apiSuccessExample {json} Success response example:
* {
* Module: 'Core',
* Method: 'GetSettings',
* Result: { SiteName: "Aurora Cloud", Language: "English", TimeFormat: 1, DateFormat: "MM/DD/YYYY",
* EUserRole: { SuperAdmin: 0, TenantAdmin: 1, NormalUser: 2, Customer: 3, Anonymous: 4 } }
* }
*
* @apiSuccessExample {json} Error response example:
* {
* Module: 'Core',
* Method: 'GetSettings',
* Result: false,
* ErrorCode: 102
* }
*/
/**
* Obtains list of module settings for authenticated user.
*
* @return array
*/
public function GetSettings()
{
Api::checkUserRoleIsAtLeast(UserRole::Anonymous);
$oUser = Api::getAuthenticatedUser();
$oApiIntegrator = $this->getIntegratorManager();
$iLastErrorCode = $oApiIntegrator->getLastErrorCode();
if (0 < $iLastErrorCode) {
$oApiIntegrator->clearLastErrorCode();
}
$oSettings = &Api::GetSettings();
$aSettings = array(
'AutodetectLanguage' => $this->oModuleSettings->AutodetectLanguage,
'UserSelectsDateFormat' => $this->oModuleSettings->UserSelectsDateFormat,
'DateFormat' => $this->oModuleSettings->DateFormat,
'DateFormatList' => $this->oModuleSettings->DateFormatList,
'EUserRole' => (new UserRole())->getMap(),
'Language' => Api::GetLanguage(),
'ShortLanguage' => \Aurora\System\Utils::ConvertLanguageNameToShort(Api::GetLanguage()),
'LanguageList' => $oApiIntegrator->getLanguageList(),
'LastErrorCode' => $iLastErrorCode,
'SiteName' => $this->oModuleSettings->SiteName,
'SocialName' => '',
'TenantName' => Api::getTenantName(),
'EnableMultiTenant' => $oSettings->EnableMultiTenant,
'TimeFormat' => $this->oModuleSettings->TimeFormat,
'UserId' => Api::getAuthenticatedUserId(),
'IsSystemConfigured' => is_writable(Api::DataPath()) &&
(file_exists(Api::GetEncryptionKeyPath()) && strlen(@file_get_contents(Api::GetEncryptionKeyPath()))),
'Version' => Api::VersionFull(),
'ProductName' => $this->oModuleSettings->ProductName,
'PasswordMinLength' => $oSettings->PasswordMinLength,
'PasswordMustBeComplex' => $oSettings->PasswordMustBeComplex,
'CookiePath' => Api::getCookiePath(),
'CookieSecure' => Api::getCookieSecure(),
'AuthTokenCookieExpireTime' => $this->oModuleSettings->AuthTokenCookieExpireTime,
'StoreAuthTokenInDB' => $oSettings->StoreAuthTokenInDB,
'AvailableClientModules' => $oApiIntegrator->GetClientModuleNames(),
'AvailableBackendModules' => $oApiIntegrator->GetBackendModules(),
'AllowGroups' => $this->oModuleSettings->AllowGroups,
);
if ($oSettings && ($oUser instanceof User) && $oUser->Role === UserRole::SuperAdmin) {
$sAdminPassword = $oSettings->AdminPassword;
$aSettings = array_merge($aSettings, array(
'DBHost' => $oSettings->DBHost,
'DBName' => $oSettings->DBName,
'DBLogin' => $oSettings->DBLogin,
'AdminLogin' => $oSettings->AdminLogin,
'AdminHasPassword' => !empty($sAdminPassword),
'AdminLanguage' => $oSettings->AdminLanguage,
'CommonLanguage' => $this->oModuleSettings->Language,
'EncryptionKeyNotEmpty' => file_exists(Api::GetEncryptionKeyPath()) && strlen(@file_get_contents(Api::GetEncryptionKeyPath())),
'EnableLogging' => $oSettings->EnableLogging,
'EnableEventLogging' => $oSettings->EnableEventLogging,
'LoggingLevel' => $oSettings->LoggingLevel,
'LogFilesData' => $this->GetLogFilesData(),
'ELogLevel' => (new \Aurora\System\Enums\LogLevel())->getMap()
));
}
if (($oUser instanceof User) && $oUser->isNormalOrTenant()) {
if ($oUser->DateFormat !== '') {
$aSettings['DateFormat'] = $oUser->DateFormat;
}
$aSettings['TimeFormat'] = $oUser->TimeFormat;
$aSettings['Timezone'] = $oUser->DefaultTimeZone;
}
return $aSettings;
}
/**
* @api {post} ?/Api/ UpdateSettings
* @apiName UpdateSettings
* @apiGroup Core
* @apiDescription Updates specified settings if super administrator is authenticated.
*
* @apiHeader {string} Authorization "Bearer " + Authentication token which was received as the result of Core.Login method.
* @apiHeaderExample {json} Header-Example:
* {
* "Authorization": "Bearer 32b2ecd4a4016fedc4abee880425b6b8"
* }
*
* @apiParam {string=Core} Module Module name.
* @apiParam {string=UpdateSettings} Method Method name.
* @apiParam {string} Parameters JSON.stringified object <br>
* {<br>
*   **DbLogin** *string* Database login.<br>
*   **DbPassword** *string* Database password.<br>
*   **DbName** *string* Database name.<br>
*   **DbHost** *string* Database host.<br>
*   **AdminLogin** *string* Login for super administrator.<br>
*   **Password** *string* Current password for super administrator.<br>
*   **NewPassword** *string* New password for super administrator.<br>
*   **AdminLanguage** *string* Language for super administrator.<br>
*   **Language** *string* Language that is used on login and for new users.<br>
*   **AutodetectLanguage** *bool* Indicates if browser language should be used on login and for new users.<br>
*   **TimeFormat** *int* Time format that is used for new users.<br>
*   **EnableLogging** *bool* Indicates if logs are enabled.<br>
*   **EnableEventLogging** *bool* Indicates if events logs are enabled.<br>
*   **LoggingLevel** *int* Specify logging level.<br>
* }
*
* @apiParamExample {json} Request-Example:
* {
* Module: 'Core',
* Method: 'UpdateSettings',
* Parameters: '{ DbLogin: "login_value", DbPassword: "password_value",
* DbName: "db_name_value", DbHost: "host_value", AdminLogin: "admin_login_value",
* Password: "admin_pass_value", NewPassword: "admin_pass_value" }'
* }
*
* @apiSuccess {object[]} Result Array of response objects.
* @apiSuccess {string} Result.Module Module name.
* @apiSuccess {string} Result.Method Method name.
* @apiSuccess {bool} Result.Result Indicates if settings were updated successfully.
* @apiSuccess {int} [Result.ErrorCode] Error code.
*
* @apiSuccessExample {json} Success response example:
* {
* Module: 'Core',
* Method: 'UpdateSettings',
* Result: true
* }
*
* @apiSuccessExample {json} Error response example:
* {
* Module: 'Core',
* Method: 'UpdateSettings',
* Result: false,
* ErrorCode: 102
* }
*/
/**
* Updates specified settings if super administrator is authenticated.
*
* @param string $DbLogin Database login.
* @param string $DbPassword Database password.
* @param string $DbName Database name.
* @param string $DbHost Database host.
* @param string $AdminLogin Login for super administrator.
* @param string $Password Current password for super administrator.
* @param string $NewPassword New password for super administrator.
* @param string $AdminLanguage Language for super administrator.
* @param string $SiteName Site name.
* @param string $Language Language that is used on login and for new users.
* @param bool $AutodetectLanguage Indicates if browser language should be used on login and for new users.
* @param int $TimeFormat Time format that is used for new users.
* @param bool $EnableLogging Indicates if logs are enabled.
* @param bool $EnableEventLogging Indicates if events logs are enabled.
* @param int $LoggingLevel Specify logging level.
* @return bool
* @throws ApiException
*/
public function UpdateSettings(
$DbLogin = null,
$DbPassword = null,
$DbName = null,
$DbHost = null,
$AdminLogin = null,
$Password = null,
$NewPassword = null,
$AdminLanguage = null,
$SiteName = null,
$Language = null,
$AutodetectLanguage = null,
$TimeFormat = null,
$DateFormat = null,
$EnableLogging = null,
$EnableEventLogging = null,
$LoggingLevel = null
) {
Api::checkUserRoleIsAtLeast(UserRole::NormalUser);
$oUser = Api::getAuthenticatedUser();
if ($oUser->Role === UserRole::SuperAdmin) {
if ($SiteName !== null || $Language !== null || $TimeFormat !== null || $AutodetectLanguage !== null) {
if ($SiteName !== null) {
$this->setConfig('SiteName', $SiteName);
}
if ($AutodetectLanguage !== null) {
$this->setConfig('AutodetectLanguage', $AutodetectLanguage);
}
if ($Language !== null) {
$this->setConfig('Language', $Language);
}
if ($TimeFormat !== null) {
$this->setConfig('TimeFormat', (int) $TimeFormat);
}
$this->saveModuleConfig();
}
$oSettings = &Api::GetSettings();
if ($DbLogin !== null) {
$oSettings->DBLogin = $DbLogin;
}
if ($DbPassword !== null) {
$oSettings->DBPassword = $DbPassword;
}
if ($DbName !== null) {
$oSettings->DBName = $DbName;
}
if ($DbHost !== null) {
$oSettings->DBHost = $DbHost;
}
if ($AdminLogin !== null && $AdminLogin !== $oSettings->AdminLogin) {
$aArgs = array(
'Login' => $AdminLogin
);
$this->broadcastEvent(
'CheckAccountExists',
$aArgs
);
$oSettings->AdminLogin = $AdminLogin;
}
$sAdminPassword = $oSettings->AdminPassword;
if ((empty($sAdminPassword) && empty($Password) || !empty($Password)) && !empty($NewPassword)) {
if (empty($sAdminPassword) || password_verify($Password, $sAdminPassword)) {
$oSettings->AdminPassword = password_hash(trim($NewPassword), PASSWORD_BCRYPT);
} else {
throw new ApiException(Notifications::AccountOldPasswordNotCorrect);
}
}
if ($AdminLanguage !== null) {
$oSettings->AdminLanguage = $AdminLanguage;
}
if ($EnableLogging !== null) {
$oSettings->EnableLogging = $EnableLogging;
}
if ($EnableEventLogging !== null) {
$oSettings->EnableEventLogging = $EnableEventLogging;
}
if ($LoggingLevel !== null) {
$oSettings->LoggingLevel = $LoggingLevel;
}
return $oSettings->Save();
}
if ($oUser->isNormalOrTenant()) {
if ($Language !== null) {
$oUser->Language = $Language;
}
if ($TimeFormat !== null) {
$oUser->TimeFormat = $TimeFormat;
}
if ($DateFormat !== null) {
$oUser->DateFormat = $DateFormat;
}
return $this->UpdateUserObject($oUser);
}
return false;
}
public function UpdateLoggingSettings($EnableLogging = null, $EnableEventLogging = null, $LoggingLevel = null)
{
Api::checkUserRoleIsAtLeast(UserRole::SuperAdmin);
$oSettings = &Api::GetSettings();
if ($EnableLogging !== null) {
$oSettings->EnableLogging = $EnableLogging;
}
if ($EnableEventLogging !== null) {
$oSettings->EnableEventLogging = $EnableEventLogging;
}
if ($LoggingLevel !== null) {
$oSettings->LoggingLevel = $LoggingLevel;
}
return $oSettings->Save();
}
/**
* @ignore
* Turns on or turns off mobile version.
* @param bool $Mobile Indicates if mobile version should be turned on or turned off.
* @return bool
*/
public function SetMobile($Mobile)
{
Api::checkUserRoleIsAtLeast(UserRole::Anonymous);
$oIntegrator = $this->getIntegratorManager();
return $oIntegrator ? $oIntegrator->setMobile($Mobile) : false;
}
/**
* @api {post} ?/Api/ CreateTables
* @apiName CreateTables
* @apiGroup Core
* @apiDescription Creates tables reqired for module work. Creates first channel and tenant if it is necessary.
*
* @apiHeader {string} Authorization "Bearer " + Authentication token which was received as the result of Core.Login method.
* @apiHeaderExample {json} Header-Example:
* {
* "Authorization": "Bearer 32b2ecd4a4016fedc4abee880425b6b8"
* }
*
* @apiParam {string=Core} Module Module name.
* @apiParam {string=CreateTables} Method Method name.
*
* @apiParamExample {json} Request-Example:
* {
* Module: 'Core',
* Method: 'CreateTables'
* }
*
* @apiSuccess {object[]} Result Array of response objects.
* @apiSuccess {string} Result.Module Module name.
* @apiSuccess {string} Result.Method Method name.
* @apiSuccess {bool} Result.Result Indicates if tables was created successfully.
* @apiSuccess {int} [Result.ErrorCode] Error code.
*
* @apiSuccessExample {json} Success response example:
* {
* Module: 'Core',
* Method: 'CreateTables',
* Result: true
* }
*
* @apiSuccessExample {json} Error response example:
* {
* Module: 'Core',
* Method: 'CreateTables',
* Result: false,
* ErrorCode: 102
* }
*/
/**
* Creates tables required for module work. Creates first channel and tenant if it is necessary.
*
* @return bool
*/
public function CreateTables()
{
Api::checkUserRoleIsAtLeast(UserRole::SuperAdmin);
if (!function_exists('mysqli_fetch_all')) {
throw new ApiException(0, null, 'Please make sure your PHP/MySQL environment meets the minimal system requirements.');
}
$bResult = false;
try {
$container = Api::GetContainer();
$oPdo = $container['connection']->getPdo();
if ($oPdo && strpos($oPdo->getAttribute(\PDO::ATTR_CLIENT_VERSION), 'mysqlnd') === false) {
throw new ApiException(Enums\ErrorCodes::MySqlConfigError, null, 'MySqlConfigError');
}
$container['console']->setAutoExit(false);
$container['console']->find('migrate')
->run(new ArrayInput([
'--force' => true,
'--seed' => true
]), new NullOutput());
$bResult = true;
} catch (\Exception $oEx) {
Api::LogException($oEx);
if ($oEx instanceof ApiException) {
throw $oEx;
}
}
return $bResult;
}
public function GetOrphans()
{
Api::checkUserRoleIsAtLeast(UserRole::SuperAdmin);
$bResult = false;
try {
$container = Api::GetContainer();
$container['console']->setAutoExit(false);
$output = new BufferedOutput();
$container['console']->find('get-orphans')
->run(new ArrayInput([]), $output);
$content = array_filter(explode(PHP_EOL, $output->fetch()));
$bResult = $content;
} catch (\Exception $oEx) {
Api::LogException($oEx);
}
return $bResult;
}
/**
* Updates config files.
* @return boolean
*/
public function UpdateConfig()
{
Api::checkUserRoleIsAtLeast(UserRole::SuperAdmin);
return Api::UpdateSettings();
}
/**
* @api {post} ?/Api/ TestDbConnection
* @apiName TestDbConnection
* @apiGroup Core
* @apiDescription Tests connection to database with specified credentials.
*
* @apiHeader {string} Authorization "Bearer " + Authentication token which was received as the result of Core.Login method.
* @apiHeaderExample {json} Header-Example:
* {
* "Authorization": "Bearer 32b2ecd4a4016fedc4abee880425b6b8"
* }
*
* @apiParam {string=Core} Module Module name.
* @apiParam {string=TestDbConnection} Method Method name.
* @apiParam {string} Parameters JSON.stringified object <br>
* {<br>
*   **DbLogin** *string* Database login.<br>
*   **DbName** *string* Database name.<br>
*   **DbHost** *string* Database host.<br>
*   **DbPassword** *string* Database password.<br>
* }
*
* @apiParamExample {json} Request-Example:
* {
* Module: 'Core',
* Method: 'TestDbConnection',
* Parameters: '{ DbLogin: "db_login_value", DbName: "db_name_value", DbHost: "db_host_value",
* DbPassword: "db_pass_value" }'
* }
*
* @apiSuccess {object[]} Result Array of response objects.
* @apiSuccess {string} Result.Module Module name.
* @apiSuccess {string} Result.Method Method name.
* @apiSuccess {bool} Result.Result Indicates if test of database connection was successful.
* @apiSuccess {int} [Result.ErrorCode] Error code.
*
* @apiSuccessExample {json} Success response example:
* {
* Module: 'Core',
* Method: 'TestDbConnection',
* Result: true
* }
*
* @apiSuccessExample {json} Error response example:
* {
* Module: 'Core',
* Method: 'TestDbConnection',
* Result: false,
* ErrorCode: 102
* }
*/
/**
* Tests connection to database with specified credentials.
*
* @param string $DbLogin Database login.
* @param string $DbName Database name.
* @param string $DbHost Database host.
* @param string $DbPassword Database password.
* @return bool
*/
public function TestDbConnection($DbLogin, $DbName, $DbHost, $DbPassword = null)
{
Api::checkUserRoleIsAtLeast(UserRole::SuperAdmin);
if (!function_exists('mysqli_fetch_all')) {
throw new ApiException(0, null, 'Please make sure your PHP/MySQL environment meets the minimal system requirements.');
}
if (empty($DbName) || empty($DbHost) || empty($DbLogin)) {
throw new ApiException(Notifications::InvalidInputParameter, null, 'InvalidInputParameter');
}
$oPdo = null;
$oSettings = &Api::GetSettings();
if ($oSettings) {
if ($DbPassword === null) {
$DbPassword = $oSettings->DBPassword;
}
$capsule = new \Illuminate\Database\Capsule\Manager();
$capsule->addConnection(Api::GetDbConfig(
$oSettings->DBType,
$DbHost,
$DbName,
$oSettings->DBPrefix,
$DbLogin,
$DbPassword
));
$oPdo = $capsule->getConnection()->getPdo();
if ($oPdo && strpos($oPdo->getAttribute(\PDO::ATTR_CLIENT_VERSION), 'mysqlnd') === false) {
throw new ApiException(Enums\ErrorCodes::MySqlConfigError, null, 'MySqlConfigError');
}
}
return $oPdo instanceof \PDO;
}
/**
* Obtains authenticated account.
*
* @param string $AuthToken
*/
public function GetAuthenticatedAccount($AuthToken)
{
Api::checkUserRoleIsAtLeast(UserRole::Anonymous);
$aUserInfo = Api::getAuthenticatedUserInfo($AuthToken);
$oAccount = call_user_func_array([$aUserInfo['accountType'], 'find'], [(int)$aUserInfo['account']]);
return $oAccount;
}
/**
* Obtains all accounts from all modules for authenticated user.
*
* @param string $AuthToken
* @param string $Type
* @return array
*/
public function GetAccounts($AuthToken, $Type = '')
{
Api::checkUserRoleIsAtLeast(UserRole::Anonymous);
$aUserInfo = Api::getAuthenticatedUserInfo($AuthToken);