forked from delight-im/Localize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
967 lines (935 loc) · 54.6 KB
/
index.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
<?php
require_once(__DIR__.'/classes/Authentication.php');
require_once(__DIR__.'/classes/File_IO.php');
require_once(__DIR__.'/classes/URL.php');
require_once(__DIR__.'/classes/Language_Android.php');
require_once(__DIR__.'/classes/Phrase_Android_Plurals.php');
require_once(__DIR__.'/classes/Phrase_Android_String.php');
require_once(__DIR__.'/classes/Phrase_Android_StringArray.php');
require_once(__DIR__.'/classes/Repository.php');
require_once(__DIR__.'/classes/UI.php');
require_once(__DIR__.'/classes/UI_Alert.php');
require_once(__DIR__.'/classes/User.php');
require_once(__DIR__.'/classes/Database.php');
require_once(__DIR__.'/classes/Edit.php');
require_once(__DIR__.'/classes/Email.php');
require_once(__DIR__.'/libs/password_compat.php');
Authentication::init();
UI::init(Authentication::getUserTimezone());
Database::init();
if (isset($_GET['v'])) {
UI::redirectToURL(URL::toProject(UI::validateID($_GET['v'], true)));
exit;
}
elseif (UI::isPage('sign_up')) {
if (UI::isAction('sign_up')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
if (Database::Throttling_isAllowed(UI::getIPAddress(), 'sign_up')) {
$data = UI::getDataPOST('sign_up');
$data_type = isset($data['type']) ? intval($data['type']) : 0;
if (!Authentication::isAllowSignUpDevelopers()) {
$data_type = User::TYPE_TRANSLATOR;
}
$data_username = isset($data['username']) && is_string($data['username']) ? trim($data['username']) : '';
$data_passwordText = isset($data['password']) && is_string($data['password']) ? trim($data['password']) : '';
if (Authentication::isPasswordAllowed($data_passwordText)) {
if (mb_strlen($data_username) >= 3) {
if ($data_type == User::TYPE_TRANSLATOR || $data_type == User::TYPE_DEVELOPER) {
$data_password = password_hash($data_passwordText, PASSWORD_BCRYPT);
try {
Database::insert("INSERT INTO users (username, password, type, join_date) VALUES (".Database::escape($data_username).", ".Database::escape($data_password).", ".intval($data_type).", ".time().")");
Database::Throttling_increaseCounter(UI::getIPAddress(), 'sign_up');
// show password as a hidden value masked by asterisks which can be clicked to expose the password
$passwordShowable = '<code onclick="this.innerHTML = \''.UI::htmlspecialcharsJS($data_passwordText).'\';" style="cursor:pointer;">'.str_repeat('*', mb_strlen($data_passwordText)).'</code>';
$alert = new UI_Alert('<p>Your free account has been created!</p><p>Please sign in by entering your username and password in the top-right corner.</p><p>Username: <code>'.htmlspecialchars($data_username).'</code></p><p>Password: '.$passwordShowable.' (click to show)</p><p>Please remember your password as we won\'t be able to recover access to your account in case you forget it.</p>', UI_Alert::TYPE_SUCCESS);
}
catch (Exception $e) {
$alert = new UI_Alert('<p>It seems this username is already taken. Please try another one.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Please choose one of the account types!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Your username must be at least 3 characters long!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Please check the requirements for your password and make sure to re-type it correctly!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = UI_Alert::forActionThrottled();
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
echo UI::getPage(UI::PAGE_SIGN_UP, array($alert));
}
else {
echo UI::getPage(UI::PAGE_SIGN_UP);
}
}
elseif (UI::isPage('contact')) {
echo UI::getPage(UI::PAGE_CONTACT);
}
elseif (UI::isPage('help')) {
echo UI::getPage(UI::PAGE_HELP);
}
elseif (UI::isPage('settings')) {
$alert = NULL;
if (UI::isAction('settings')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$data = UI::getDataPOST('settings');
$realName = isset($data['realName']) && is_string($data['realName']) ? trim($data['realName']) : '';
$nativeLanguages = isset($data['nativeLanguage']) ? $data['nativeLanguage'] : array();
$localeCountry = isset($data['country']) && is_string($data['country']) ? trim($data['country']) : '';
$localeTimezone = isset($data['timezone'][$localeCountry]) && is_string($data['timezone'][$localeCountry]) ? trim($data['timezone'][$localeCountry]) : '';
$email = isset($data['email']) && is_string($data['email']) ? trim($data['email']) : '';
Database::updateSettings(Authentication::getUserID(), $realName, $nativeLanguages, $localeCountry, $localeTimezone, $email);
$userObject = Authentication::getUser();
if (!empty($userObject)) {
$userObject->setRealName($realName);
$userObject->setCountry($localeCountry);
$userObject->setTimezone($localeTimezone);
if (!empty($email)) {
if (User::isEmailValid($email)) {
if (Database::updateEmail(Authentication::getUserID(), $email)) {
Authentication::askForEmailVerification($email, $userObject);
$userObject->setEmail($email);
}
}
}
else {
Database::updateEmail(Authentication::getUserID(), '');
$userObject->setEmail('');
$userObject->setEmail_lastVerificationAttempt(0);
}
Authentication::updateUserInfo($userObject);
}
$alert = new UI_Alert('<p>Your settings have been updated.</p>', UI_Alert::TYPE_SUCCESS);
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$verificationToken = UI::getDataGET('verify');
if (!empty($verificationToken) && is_string($verificationToken)) {
$verificationUser = Database::getVerificationUser($verificationToken);
if (isset($verificationUser['userID'])) {
$userObject = Authentication::getUser();
if (isset($userObject) && $userObject instanceof User) {
$userObject->setEmail_lastVerificationAttempt(0);
Authentication::updateUserInfo($userObject);
}
Database::verifyUserEmail($verificationUser['userID']);
$alert = new UI_Alert('Your email address has been verified.', UI_Alert::TYPE_SUCCESS);
}
else {
$alert = new UI_Alert('We were not able to verify your email address. Please try again!', UI_Alert::TYPE_WARNING);
}
}
else {
$actionString = UI::getDataGET('action');
if (!empty($actionString)) {
if ($actionString == 'resendVerificationEmail') {
if (Database::updateEmailVerificationAttempt(Authentication::getUserID())) {
Authentication::askForEmailVerification(Authentication::getUserEmail());
$alert = new UI_Alert('A new verification email has been sent to \''.htmlspecialchars(Authentication::getUserEmail()).'\'!', UI_Alert::TYPE_SUCCESS);
}
else {
$alert = new UI_Alert('You may not request a new verification email right now. Please try again later!', UI_Alert::TYPE_WARNING);
}
}
}
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_SETTINGS);
}
else {
echo UI::getPage(UI::PAGE_SETTINGS, array($alert));
}
}
elseif (UI::isPage('sign_out')) {
Authentication::signOut();
$alert = new UI_Alert('You have successfully been signed out!', UI_Alert::TYPE_SUCCESS);
echo UI::getPage(UI::PAGE_INDEX, array($alert));
}
elseif (UI::isPage('project')) {
echo UI::getPage(UI::PAGE_PROJECT);
}
elseif (UI::isPage('language')) {
$alert = NULL;
if (UI::isAction('updatePhrases')) {
$languageID = UI::validateID(UI::getDataGET('language'), true);
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$data = UI::getDataPOST('updatePhrases');
if (isset($data['secret']) && is_string($data['secret']) && isset($data['translatorID']) && is_string($data['translatorID'])) {
$translatorID = intval(trim($data['translatorID']));
if (Database::finishTranslationSession($repositoryID, $languageID, $translatorID, trim($data['secret']), time())) {
if (isset($data['edits']) && is_array($data['edits']) && isset($data['previous']) && is_array($data['previous'])) {
Authentication::saveCachedEdits($repositoryID, $languageID, $data['edits']);
$editData = array();
$counter = 0;
foreach ($data['edits'] as $phraseID => $phraseSubKeys) {
foreach ($phraseSubKeys as $phraseSubKey => $phraseSuggestedValue) {
$previousValue = isset($data['previous'][$phraseID][$phraseSubKey]) && is_string($data['previous'][$phraseID][$phraseSubKey]) ? trim($data['previous'][$phraseID][$phraseSubKey]) : '';
$phraseSuggestedValue = isset($phraseSuggestedValue) && is_string($phraseSuggestedValue) ? trim($phraseSuggestedValue) : '';
if ($phraseSuggestedValue !== $previousValue) {
$editData[] = new Edit(URL::decodeID($phraseID), $phraseSubKey, $phraseSuggestedValue);
$counter++;
}
}
}
if (!empty($editData)) {
Database::submitEdits($repositoryID, $languageID, $translatorID, $editData);
$alert = new UI_Alert('<p>Thank you very much!</p><p>Your modifications to '.$counter.' phrases have been submitted to this project.</p><p>They will now be reviewed by the project owners.</p>', UI_Alert::TYPE_SUCCESS);
Repository::sendNotificationToWatchers($repositoryID, Repository::WATCH_EVENT_NEW_TRANSLATIONS, $repositoryData['name']);
}
else {
$alert = new UI_Alert('<p>You didn\'t change any phrase. Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>You did not send any modifications. Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to submit changes to this project.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Authentication has failed. Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_PROJECT);
}
else {
echo UI::getPage(UI::PAGE_PROJECT, array($alert));
}
}
elseif (UI::isPage('review')) {
$alert = NULL;
if (UI::isAction('review')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$languageID = UI::validateID(UI::getDataGET('language'), true);
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_MODERATOR);
if ($isAllowed) {
$data = UI::getDataPOST('review');
$data_action = isset($data['action']) && is_string($data['action']) ? trim($data['action']) : '';
$data_editID = isset($data['editID']) ? UI::validateID($data['editID'], true) : '';
$data_phraseObject = isset($data['phraseObject']) ? @unserialize(base64_decode($data['phraseObject'])) : NULL;
$data_phraseKey = isset($data['phraseKey']) && is_string($data['phraseKey']) ? trim($data['phraseKey']) : '';
$data_phraseSubKey = isset($data['phraseSubKey']) && is_string($data['phraseSubKey']) ? trim($data['phraseSubKey']) : '';
$data_contributorID = isset($data['contributorID']) ? UI::validateID($data['contributorID'], true) : '';
$data_newValue = isset($data['newValue']) && is_string($data['newValue']) ? $data['newValue'] : '';
$data_referenceValue = isset($data['referenceValue']) && is_string($data['referenceValue']) ? $data['referenceValue'] : '';
if (!empty($data_phraseObject)) {
switch ($data_action) {
case 'approve':
// placeholders (except their order) may only be changed in default language
if (Phrase::areEntitiesMatching(Phrase_Android::getPlaceholders($data_referenceValue), Phrase_Android::getPlaceholders($data_newValue)) || $languageID == $repositoryData['defaultLanguage']) {
// leading or trailing whitespace (except the order) may only be changed in default language
if (Phrase::areEntitiesMatching(Phrase_Android::getOuterWhitespace($data_referenceValue), Phrase_Android::getOuterWhitespace($data_newValue)) || $languageID == $repositoryData['defaultLanguage']) {
// HTML tags (except their order) may only be changed in default language
if (Phrase::areEntitiesMatching(Phrase_Android::getHTMLTags($data_referenceValue), Phrase_Android::getHTMLTags($data_newValue)) || $languageID == $repositoryData['defaultLanguage']) {
// CDATA sections (except their order) may only be changed in default language
if (Phrase::areEntitiesMatching(Phrase_Android::getCdataSections($data_referenceValue), Phrase_Android::getCdataSections($data_newValue)) || $languageID == $repositoryData['defaultLanguage']) {
$data_phraseObject->setPhraseValue($data_phraseSubKey, $data_newValue);
Database::updatePhrase($repositoryID, $languageID, $data_phraseKey, $data_phraseObject->getPayload());
Database::updateContributor($repositoryID, $data_contributorID);
Database::deleteEdit($data_editID);
Authentication::setCachedLanguageProgress($repositoryID, NULL); // unset cached version of this repository's progress
}
else {
$alert = new UI_Alert('<p>The CDATA sections must match with those from the reference phrase.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The HTML tags must match with those from the reference phrase.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Any leading or trailing whitespace must match with that from the reference phrase.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The placeholders must match with those from the reference phrase.</p>', UI_Alert::TYPE_WARNING);
}
break;
case 'reviewLater':
Database::postponeEdit($data_editID);
break;
case 'reject':
Database::deleteEdit($data_editID);
break;
case 'approveAllFromThisContributor':
Database::approveEditsByContributor($repositoryID, $languageID, $data_contributorID);
break;
case 'rejectAllFromThisContributor':
Database::deleteEditsByContributor($data_contributorID);
break;
}
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to review contributions for this project.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
elseif (UI::isAction('discussion')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$data = UI::getDataPOST('discussion');
$data_editID = isset($data['editID']) ? UI::validateID($data['editID'], true) : '';
$data_message = isset($data['message']) && is_string($data['message']) ? trim($data['message']) : '';
Database::saveDiscussionEntry($data_editID, Authentication::getUserID(), time(), $data_message);
$alert = new UI_Alert('<p>Your message has been saved to the discussion on this page.</p>', UI_Alert::TYPE_SUCCESS);
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_REVIEW);
}
else {
echo UI::getPage(UI::PAGE_REVIEW, array($alert));
}
}
elseif (UI::isPage('invitations')) {
$alert = NULL;
if (UI::isAction('invitations')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_ADMINISTRATOR);
if ($isAllowed) {
$data = UI::getDataPOST('invitations');
$data_userID = UI::validateID($data['userID'], true);
$data_accept = isset($data['accept']) && is_string($data['accept']) ? intval(trim($data['accept'])) : 0;
$data_role = isset($data['role']) && is_string($data['role']) ? intval(trim($data['role'])) : 0;
if ($data_userID > 0 && ($data_accept == 1 || $data_accept == -1) && Repository::isRoleValid($data_role)) {
try {
Database::reviewInvitation($repositoryID, $data_userID, $data_accept == 1, $data_role);
}
catch (Exception $e) {
$alert = new UI_Alert('<p>This user does already have a role in your project. Please decline the invitation request.</p>', UI_Alert::TYPE_WARNING);
}
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to review invitation requests for this project.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_INVITATIONS);
}
else {
echo UI::getPage(UI::PAGE_INVITATIONS, array($alert));
}
}
elseif (UI::isPage('watch')) {
$alert = NULL;
if (UI::isAction('watch')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$data = UI::getDataPOST('watch');
if (isset($data['events'])) {
$events = array(
Repository::WATCH_EVENT_UPDATED_PHRASES,
Repository::WATCH_EVENT_NEW_TRANSLATIONS
);
foreach ($events as $event) {
$eventStatus = isset($data['events'][$event]) ? intval($data['events'][$event]) : 0;
Database::setWatchedEvents($repositoryID, $event, Authentication::getUserID(), $eventStatus);
$alert = new UI_Alert('<p>Your preferences for this project have been updated.</p>', UI_Alert::TYPE_SUCCESS);
}
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_WATCH);
}
else {
echo UI::getPage(UI::PAGE_WATCH, array($alert));
}
}
elseif (UI::isPage('export')) {
$alert = NULL;
if (UI::isAction('export')) {
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$repositoryDefaultLanguage = $repositoryData['defaultLanguage'];
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_DEVELOPER);
if ($isAllowed) {
$data = UI::getDataPOST('export');
$filename = isset($data['filename']) && is_string($data['filename']) ? trim($data['filename']) : '';
if (File_IO::isFilenameValid($filename)) {
$groupID = intval(trim($data['groupID']));
$minCompletion = intval(trim($data['minCompletion']));
$format = intval(trim($data['format']));
$ignoreIfSameAsDefault = intval(trim($data['ignoreIfSameAsDefault'])) == 1;
$repository = new Repository($repositoryID, $repositoryData['name'], $repositoryData['visibility'], $repositoryData['defaultLanguage']);
$repository->loadLanguages(true, Repository::SORT_ALL_LANGUAGES, Repository::LOAD_ALL_LANGUAGES);
File_IO::exportRepository($repository, $filename, $groupID, $format, $minCompletion, $ignoreIfSameAsDefault);
exit;
}
else {
$alert = new UI_Alert('<p>Please enter a valid filename.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to export files from this project.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_PROJECT);
}
else {
echo UI::getPage(UI::PAGE_PROJECT, array($alert));
}
}
elseif (UI::isPage('import')) {
$alert = NULL;
if (UI::isAction('import')) {
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$repositoryDefaultLanguage = $repositoryData['defaultLanguage'];
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_DEVELOPER);
if ($isAllowed) {
if (isset($_FILES['importFileXML'])) {
$data = UI::getDataPOST('import');
$groupID = isset($data['groupID']) && is_string($data['groupID']) ? intval(trim($data['groupID'])) : Phrase::GROUP_NONE;
$overwriteMode = isset($data['overwrite']) && is_string($data['overwrite']) ? intval(trim($data['overwrite'])) : -1;
$languageID = isset($data['languageID']) && is_string($data['languageID']) ? intval(trim($data['languageID'])) : 0;
if ($overwriteMode == 0 || $overwriteMode == 1) {
if ($languageID > 0) {
try {
$languageNameFull = Language::getLanguageNameFull($languageID);
$importResult = File_IO::importXML($repositoryID, $_FILES['importFileXML']);
if (isset($importResult) && is_array($importResult)) {
Database::addPhrases($repositoryID, $languageID, $importResult, $groupID, $overwriteMode == 1);
Authentication::setCachedLanguageProgress($repositoryID, NULL); // unset cached version of this repository's progress
$alert = new UI_Alert('<p>You have imported '.count($importResult).' phrases to '.$languageNameFull.'.</p>', UI_Alert::TYPE_SUCCESS);
Repository::sendNotificationToWatchers($repositoryID, Repository::WATCH_EVENT_UPDATED_PHRASES, $repositoryData['name']);
}
else {
switch ($importResult) {
case File_IO::UPLOAD_ERROR_NO_TRANSLATIONS_FOUND:
$alert = new UI_Alert('<p>No translations were found in the uploaded XML file.</p>', UI_Alert::TYPE_WARNING);
break;
case File_IO::UPLOAD_ERROR_COULD_NOT_OPEN:
$alert = new UI_Alert('<p>Could not open the XML file. Please try again!</p>', UI_Alert::TYPE_WARNING);
break;
case File_IO::UPLOAD_ERROR_COULD_NOT_PROCESS:
$alert = new UI_Alert('<p>Could not process the XML file. Please try again!</p>', UI_Alert::TYPE_WARNING);
break;
case File_IO::UPLOAD_ERROR_TOO_LARGE:
$alert = new UI_Alert('<p>The XML file that you tried to upload was too large.</p>', UI_Alert::TYPE_WARNING);
break;
case File_IO::UPLOAD_ERROR_XML_INVALID:
$alert = new UI_Alert('<p>Invalid XML in the uploaded file.</p>', UI_Alert::TYPE_WARNING);
break;
default:
$alert = new UI_Alert('<p>Unknown error. Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
}
catch (Exception $e) {
$alert = new UI_Alert('<p>Could not find the language that you have selected.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Please choose one of the languages from the list.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Please choose if you want to overwrite existing phrases or not.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Please select an XML file to import.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to import phrases to this project.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_PROJECT);
}
else {
echo UI::getPage(UI::PAGE_PROJECT, array($alert));
}
}
elseif (UI::isPage('add_phrase')) {
$alert = NULL;
if (UI::isAction('add_phrase')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$repositoryDefaultLanguage = $repositoryData['defaultLanguage'];
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_DEVELOPER);
if ($isAllowed) {
$data = UI::getDataPOST('add_phrase');
$phraseType = isset($data['type']) && is_string($data['type']) ? intval(trim($data['type'])) : 0;
$phraseKey = isset($data['key']) && is_string($data['key']) ? trim($data['key']) : '';
if (Phrase_Android::isPhraseKeyValid($phraseKey)) {
if ($phraseType == 1) { // string
$phraseValue = isset($data['string']) && is_string($data['string']) ? trim($data['string']) : '';
if (!empty($phraseValue)) {
$phrasePayload = Phrase_Android_String::getPayloadFromValue($phraseValue);
try {
Database::addPhrase($repositoryID, $repositoryDefaultLanguage, $phraseKey, $phrasePayload);
$alert = new UI_Alert('<p>The new phrase has successfully been added.</p>', UI_Alert::TYPE_SUCCESS);
Repository::sendNotificationToWatchers($repositoryID, Repository::WATCH_EVENT_UPDATED_PHRASES, $repositoryData['name']);
}
catch (Exception $e) {
$alert = new UI_Alert('<p>The new phrase could not be added.</p><p>It seems there is already a phrase with the same key.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The phrase must not be empty.</p>', UI_Alert::TYPE_WARNING);
}
}
elseif ($phraseType == 2) { // string-array
if (isset($data['string_array']) && is_array($data['string_array']) && count($data['string_array']) > 0) {
$phraseValues = array();
$phraseValuesCandidates = $data['string_array'];
$phraseValuesComplete = true;
foreach ($phraseValuesCandidates as $phraseValuesCandidate) {
$phraseValuesCandidate = is_string($phraseValuesCandidate) ? trim($phraseValuesCandidate) : '';
if (!empty($phraseValuesCandidate)) {
$phraseValues[] = $phraseValuesCandidate;
}
else {
$phraseValuesComplete = false;
}
}
if ($phraseValuesComplete) {
$phrasePayload = Phrase_Android_StringArray::getPayloadFromValue($phraseValues);
try {
Database::addPhrase($repositoryID, $repositoryDefaultLanguage, $phraseKey, $phrasePayload);
$alert = new UI_Alert('<p>The new phrase has successfully been added.</p>', UI_Alert::TYPE_SUCCESS);
Repository::sendNotificationToWatchers($repositoryID, Repository::WATCH_EVENT_UPDATED_PHRASES, $repositoryData['name']);
}
catch (Exception $e) {
$alert = new UI_Alert('<p>The new phrase could not be added.</p><p>It seems there is already a phrase with the same key.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>New phrases must not be empty.</p>', UI_Alert::TYPE_WARNING);
}
}
}
elseif ($phraseType == 3) { // plurals
if (isset($data['plurals']) && is_array($data['plurals']) && count($data['plurals']) > 0) {
$phraseValues = array();
$phraseValuesCandidates = $data['plurals'];
$phraseValuesComplete = true;
foreach ($phraseValuesCandidates as $phraseValuesKey => $phraseValuesCandidate) {
$phraseValuesCandidate = is_string($phraseValuesCandidate) ? trim($phraseValuesCandidate) : '';
if (!empty($phraseValuesCandidate)) {
$phraseValues[$phraseValuesKey] = $phraseValuesCandidate;
}
else {
$phraseValuesComplete = false;
}
}
if ($phraseValuesComplete) {
$phrasePayload = Phrase_Android_Plurals::getPayloadFromValue($phraseValues);
try {
Database::addPhrase($repositoryID, $repositoryDefaultLanguage, $phraseKey, $phrasePayload);
$alert = new UI_Alert('<p>The new phrase has successfully been added.</p>', UI_Alert::TYPE_SUCCESS);
Repository::sendNotificationToWatchers($repositoryID, Repository::WATCH_EVENT_UPDATED_PHRASES, $repositoryData['name']);
}
catch (Exception $e) {
$alert = new UI_Alert('<p>The new phrase could not be added.</p><p>It seems there is already a phrase with the same key.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>New phrases must not be empty.</p>', UI_Alert::TYPE_WARNING);
}
}
}
}
else {
$alert = new UI_Alert('<p>Please enter a valid phrase key.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to add new phrases to this project.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_PROJECT);
}
else {
echo UI::getPage(UI::PAGE_PROJECT, array($alert));
}
}
elseif (UI::isPage('create_project') && Authentication::isSignedIn()) {
if (UI::isAction('create_project')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
if (Database::Throttling_isAllowed(UI::getIPAddress(), 'create_project')) {
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$data = UI::getDataPOST('create_project');
$data_visibility = isset($data['visibility']) ? intval($data['visibility']) : 0;
$data_name = isset($data['name']) && is_string($data['name']) ? trim($data['name']) : '';
$data_defaultLanguage = isset($data['defaultLanguage']) ? intval($data['defaultLanguage']) : 0;
if ($repositoryID > 0) {
$repositoryData = Database::getRepositoryData($repositoryID);
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_ADMINISTRATOR);
}
else {
$isAllowed = true;
}
if ($data_visibility == Repository::VISIBILITY_PUBLIC || $data_visibility == Repository::VISIBILITY_PRIVATE) {
$allLanguages = Language::getList();
if (in_array($data_defaultLanguage, $allLanguages)) {
if (mb_strlen($data_name) >= 3) {
if ($isAllowed) {
if ($repositoryID > 0) { // edit project
Database::update("UPDATE repositories SET name = ".Database::escape($data_name).", visibility = ".intval($data_visibility).", defaultLanguage = ".intval($data_defaultLanguage)." WHERE id = ".intval($repositoryID));
UI::redirectToURL(URL::toProject($repositoryID));
}
else { // create project
Database::insert("INSERT INTO repositories (name, visibility, defaultLanguage, creation_date) VALUES (".Database::escape($data_name).", ".intval($data_visibility).", ".intval($data_defaultLanguage).", ".time().")");
$newProjectID = Database::getLastInsertID(Database::TABLE_REPOSITORIES_SEQUENCE);
if ($newProjectID > 0) {
Database::insert("INSERT INTO roles (userID, repositoryID, role) VALUES (".intval(Authentication::getUser()->getID()).", ".intval($newProjectID).", ".Repository::ROLE_ADMINISTRATOR.")");
Database::Throttling_increaseCounter(UI::getIPAddress(), 'create_project');
UI::redirectToURL(URL::toProject($newProjectID));
}
else {
throw new Exception('Project could not be created');
}
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to edit this project!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Your project\'s name must be at least 3 characters long!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Please choose one of the languages from the list!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Please choose one of the visibility levels from the list!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = UI_Alert::forActionThrottled();
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
if (isset($alert)) {
echo UI::getPage(UI::PAGE_CREATE_PROJECT, array($alert));
}
else {
echo UI::getPage(UI::PAGE_CREATE_PROJECT);
}
}
elseif (UI::isAction('addGroup')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$data = UI::getDataPOST('addGroup');
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_DEVELOPER);
if ($isAllowed) {
$groupSuccessFullyAdded = true;
$data['name'] = Phrase::validateGroupName(isset($data['name']) ? $data['name'] : '');
if (mb_strlen($data['name']) >= 3) {
try {
Database::addGroup($repositoryID, $data['name']);
}
catch (Exception $e) {
$groupSuccessFullyAdded = false;
}
if ($groupSuccessFullyAdded) {
$alert = new UI_Alert('<p>The new group has successfully been added!</p>', UI_Alert::TYPE_SUCCESS);
}
else {
$alert = new UI_Alert('<p>A group with the given name does already exist!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Group names must consist of 3 or more characters</p><p>They must not contain any brackets!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to add groups to this project!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
echo UI::getPage(UI::PAGE_CREATE_PROJECT, array($alert));
}
elseif (UI::isAction('cleanLanguages')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$data = UI::getDataPOST('cleanLanguages');
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_DEVELOPER);
if ($isAllowed) {
Database::cleanLanguages($repositoryID, $repositoryData['defaultLanguage']);
Authentication::setCachedLanguageProgress($repositoryID, NULL); // unset cached version of this repository's progress
$alert = new UI_Alert('<p>All languages have successfully been cleaned!</p>', UI_Alert::TYPE_SUCCESS);
}
else {
$alert = new UI_Alert('<p>You are not allowed to clean languages in this project!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
echo UI::getPage(UI::PAGE_CREATE_PROJECT, array($alert));
}
elseif (UI::isAction('deleteGroup')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$data = UI::getDataPOST('deleteGroup');
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_DEVELOPER);
if ($isAllowed) {
Database::deleteGroup($repositoryID, $data['id']);
$alert = new UI_Alert('<p>The selected group has been deleted!</p><p>All phrases that were in this group have been moved to the default group.</p>', UI_Alert::TYPE_SUCCESS);
}
else {
$alert = new UI_Alert('<p>You are not allowed to remove groups from this project!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
echo UI::getPage(UI::PAGE_CREATE_PROJECT, array($alert));
}
else {
echo UI::getPage(UI::PAGE_CREATE_PROJECT);
}
}
elseif (UI::isPage('phrase')) {
$alert = NULL;
if (UI::isAction('phraseChange')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_DEVELOPER);
if ($isAllowed) {
$data = UI::getDataPOST('phraseChange');
if (isset($data['phraseKey']) && isset($data['action'])) {
if ($data['action'] == 'untranslate') {
$phraseKey = isset($data['phraseKey']) && is_string($data['phraseKey']) ? trim($data['phraseKey']) : '';
Database::phraseUntranslate($repositoryID, $phraseKey, $repositoryData['defaultLanguage']);
$alert = new UI_Alert('<p>You have successfully removed all translations for this phrase!</p>', UI_Alert::TYPE_SUCCESS);
}
elseif ($data['action'] == 'delete') {
$phraseKey = isset($data['phraseKey']) && is_string($data['phraseKey']) ? trim($data['phraseKey']) : '';
Database::phraseDelete($repositoryID, $phraseKey);
$alert = new UI_Alert('<p>You have successfully deleted the phrase from the project completely!</p>', UI_Alert::TYPE_SUCCESS);
}
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to edit phrases for this project.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
elseif (UI::isAction('phraseMove')) {
$repositoryID = UI::validateID(UI::getDataGET('project'), true);
$repositoryData = Database::getRepositoryData($repositoryID);
if (!empty($repositoryData)) {
$isAllowed = Repository::hasUserPermissions(Authentication::getUserID(), $repositoryID, $repositoryData, Repository::ROLE_DEVELOPER);
if ($isAllowed) {
$data = UI::getDataPOST('phraseMove');
if (isset($data['phraseKey']) && isset($data['groupID'])) {
$data_phraseKey = isset($data['phraseKey']) && is_string($data['phraseKey']) ? trim($data['phraseKey']) : '';
$data_groupID = isset($data['groupID']) && is_string($data['groupID']) ? intval(trim($data['groupID'])) : 0;
Database::setPhraseGroup($repositoryID, $data_phraseKey, $data_groupID);
$alert = new UI_Alert('<p>You have successfully moved the phrase to its new group!</p>', UI_Alert::TYPE_SUCCESS);
}
}
else {
$alert = new UI_Alert('<p>You are not allowed to edit phrases for this project.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_PHRASE);
}
else {
echo UI::getPage(UI::PAGE_PHRASE, array($alert));
}
}
else {
if (UI::isAction('sign_in')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
if (Database::Throttling_isAllowed(UI::getIPAddress(), 'sign_in')) {
$data = UI::getDataPOST('sign_in');
$data_username = isset($data['username']) && is_string($data['username']) ? trim($data['username']) : '';
$data_password = isset($data['password']) && is_string($data['password']) ? trim($data['password']) : '';
$data_returnURL = '';
$data_returnURL_Base64 = isset($data['returnURL']) && is_string($data['returnURL']) ? trim($data['returnURL']) : '';
if ($data_returnURL_Base64 != '') {
$temp = base64_decode($data_returnURL_Base64);
if ($temp !== false) {
$data_returnURL = $temp;
}
}
$userData = Database::selectFirst("SELECT id, username, password, real_name, localeCountry, localeTimezone, email, email_lastVerificationAttempt, type, join_date FROM users WHERE username = ".Database::escape($data_username));
if (!empty($userData)) {
if (isset($userData['password']) && password_verify($data_password, $userData['password'])) {
$userObject = new User($userData['id'], $userData['type'], $userData['username'], $userData['real_name'], $userData['localeCountry'], $userData['localeTimezone'], $userData['email'], $userData['email_lastVerificationAttempt'], $userData['join_date']);
Authentication::signIn($userObject);
$pendingEdits = Database::getPendingEditsByUser($userData['id']);
Authentication::restoreCachedEdits($pendingEdits);
Database::setLastLogin($userData['id'], time());
if (empty($data_returnURL) || !URL::isProject($data_returnURL)) {
$alert = new UI_Alert('<p>You have successfully been signed in!</p>', UI_Alert::TYPE_SUCCESS);
}
else {
UI::redirectToURL($data_returnURL);
exit;
}
}
else {
Database::Throttling_increaseCounter(UI::getIPAddress(), 'sign_in');
$alert = new UI_Alert('<p>Please check your password again!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
Database::Throttling_increaseCounter(UI::getIPAddress(), 'sign_in');
$alert = new UI_Alert('<p>We could not find any user with this name!</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = UI_Alert::forActionThrottled();
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
if (Authentication::isSignedIn()) {
echo UI::getPage(UI::PAGE_DASHBOARD, array($alert));
}
else {
echo UI::getPage(UI::PAGE_INDEX, array($alert));
}
}
else {
if (Authentication::isSignedIn()) {
$alert = NULL;
if (UI::isAction('requestInvitation')) {
if (UI_Form::isCSRFTokenValid($_POST)) {
$data = UI::getDataPOST('requestInvitation');
$data_repositoryID = isset($data['repositoryID']) ? UI::validateID($data['repositoryID'], true) : 0;
$repositoryData = Database::getRepositoryData($data_repositoryID);
if (!empty($repositoryData)) {
$data_userID = Authentication::getUserID();
if ($data_repositoryID > 0 && $data_userID > 0) {
try {
Database::requestInvitation($data_repositoryID, $data_userID);
$alert = new UI_Alert('<p>Your request for an invitation has been sent.</p>', UI_Alert::TYPE_SUCCESS);
}
catch (Exception $e) {
$alert = new UI_Alert('<p>You have already requested an invitation. Please check the status on your dashboard.</p>', UI_Alert::TYPE_WARNING);
}
}
}
else {
$alert = new UI_Alert('<p>The project could not be found.</p>', UI_Alert::TYPE_WARNING);
}
}
else {
$alert = new UI_Alert('<p>Oops, that didn\'t work! Please try again!</p>', UI_Alert::TYPE_WARNING);
}
}
if (empty($alert)) {
echo UI::getPage(UI::PAGE_DASHBOARD);
}
else {
echo UI::getPage(UI::PAGE_DASHBOARD, array($alert));
}
}
else {
echo UI::getPage(UI::PAGE_INDEX);
}
}
}
?>