Paste #36559: Untitled Paste

Date: 2016/09/30 07:26:57 UTC-07:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780


# ---------------------------------------------------------------------------- #
#                                                                              |
#                                                                              |
#                         D e n i z e n   S Q L A P I                          |
#                                                                              |
#                 An API for scripters to easily implement SQL                 |
#                                                                              |
#                               *REQUIRES MYSQL*                               |
#                                                                              |
#                                                                              |
#   Author: |Anthony|                                                          |
#   Version: 0.1.3                                                             |
#   dScript Version: 0.9.6-dev-199                                             |
#                                                                              |
#   Dependencies:                                                              |
#   - SQLManager:             http://mcmonkey.org/denizen/repo/entry/19        |
#   - ConfigFileGenerator:    http://mcmonkey.org/denizen/repo/entry/7         |
#                                                                              |
# ---------------------------------------------------------------------------- #
#
#
# ABOUT:
#
#     SQLAPI is a library or API for Denizen scripters to easily implement SQL
#   in their scripts. It is intended to supplement the denizen flag system for
#   those who require data to be shared across a network of servers since
#   Denizen currently has no cross server flag capability.
#
#     The SQL backend functions are almost /completely/ handled by SQLManager.
#   Automatically goes into offline caching mode if the sql database goes
#   offline!
#
#
#------------------------------------------------
#
# USAGE:
#
# -- Setup
#
#   1. Create an empty SQL database on your server. You can name it anything you
#      like. The default name is SQLAPI.
#      Consult your operating system manual or other online documentation for
#      instructions how to install and setup an sql server if needed. That is
#      beyond the scope of this documentation.
#
#   2. Install SQLManager.dscript following the instructions provided. SQLAPI
#      Will not load if SQLManager is not installed!
#
#   3. Install sqlapi.dscript to you Denizen scripts folder and type:
#      /denizen reload scripts
#
#   4. From console or in game (with sqlapi.admin permission) type:
#      /sqlapi --restart
#      This will extract the config file to /Denizen/SQLAPI/config.yml
#      SQLAPI will begin the connection attempt process, but will fail until
#      you edit the config.yml file with valid connection information.
#
#   5. Edit the config.yml file with valid connection information for your SQL
#      database created in step 1. If you have edit config.yml before the
#      connection attempt cycle expires, SQLAPI will proceed with setup, if not
#      you will need to repeat step 4.
#
#   6. SQLAPI is now installed! Rejoice!
#
#
# -- Permissions
#
#    Admin permission: sqlapi.admin
#
#
#------------------------------------------------
#
# API Guidelines and Explanation
#
# -- Notes
#
#  - SQLAPI utilizes the events system for setting/editing/deleting sql flags.
#    - Learn more about the events command: http://mcmonkey.org/denizen/cmds/event
#
#    - The events command in Denizen lacks the ability to handle lists directly
#      in the context section. You MUST use the .escaped tag when supplying a
#      list value!
#
# -- Setting/Editing/Deleting Flags
#
#    Working with SQL flags is easy! You must specify the type, flagName,
#  and flagValue context fields when you do. The duration field is optional. The
#  owner field is not used for the server type flags.
#
#    Full Example:
#    - event 'sqlflag set' 'context:owner|<playerObject>|flagName|myFlag|flagValue|potato|duration|5s'
#
#
# -- Context Fields
#
#  ~ Type
#
#    There are four (4) flag types available through SQLAPI.
#    - Type Values
#      - server - Global flags with no owner
#      - player - Player specific flags
#      - npc    - NPC specific flags
#      - entity - Entity specific flags (not fully implemented)
#
#    Example:
#    'context:type|player'
#
#
#  ~ Owner
#
#    The owner field is required for player, npc, and entity flag types, but is
#   NOT required for server type flags. The owner field must contain a valid
#   entity object for that particular flag type. A player type flag must have
#   a <player> object in the owner field. An NPC flag must have an <npc> object
#   in the owner field. An entity flag must have an <entity> object in the owner
#   field.
#
#    Example:
#    'context:owner|<player>'
#
#
#  ~ FlagName
#
#    The flagName field is where you declare the name of your flag. Flag names
#   MUST be unique. Setting a flag value on an existing flag will overwrite it.
#   Players, NPCs, and entities all have their own flag associations, which
#   means that player A and player B can both have a flag named 'potato' with no
#   conflicts.
#
#    Flag names are limited to roughly 21,844 UTF-8 characters. You should have
#   plenty of room for exotic flag names.
#
#    Example:
#    'context:flagName|potato'
#
#
#  ~ FlagValue
#
#    The flagValue field is where you store the value of your flag. It can hold
#   any string, integer, decimal, boolean, or list value you like. It has a
#   theoretical limit of 5,592,404 UTF-8 characters.
#
#    When working with a list flagValue, you must escape the whole list. This is
#   required to overcome a limitation with the events command. Your data will be
#   stored and returned to you correctly. You may also choose to use your own
#   delimiter. You will be responsible for recreating your lists when you
#   retrieve the value.
#    Example:
#    - define list 'li@a|b|c'
#    - event 'sqlflag set' 'context:type|server|flagName|myFlag|flagValue|<def[list].escaped>'
#
#
#  ~ Duration
#
#    The duration field is an optional field for all flags. Setting a duration
#   on a flag will make the flag available for specific amount of time. The
#   value for the duration field can be provided in any of the following
#   formats: T=ticks, M=minutes, S=seconds, H=hours, D=days, W = Weeks.
#   Not using a unit will imply seconds.
#    Example:
#    - event 'sqlflag set' 'context:duration|10s'
#
#------------------------------------------------
#
#               C h a n g e l o g
#
# - v0.1.3  -  4/29/15
#   - Implement the event system
#     - Scripts are encouraged to use the event system and NOT the command system
#   - Break up the sqlflag command into its constituent parts
#     - Results in a flagString parser
#   - Add fancy linewrapp and formatted message system
#     - Run almost all messages through the message system
#
# - v0.1.2  -  4/28/15
#   - List index manipulations
#     - Insert: Inserts additional values starting at the specified index
#     - Set: Inserts additional values replacing the specified index
#   - Added <proc[SQLAPI_Expiration].context[owner|flag]>
#     - Returns a Duration of the time remaining on the flag
#     - Returns d@0t if the flag does not expire
#     - Does not return if the flag is expired or is not set
#     - Owner can be server, or any valid <player>, <npc>, or <entity> object
#   - Added <proc[SQLAPI_ListFlags].context[owner]||null>
#     - List all unexpired flags for <owner>
#     - Owner can be server, or any valid <player>, <npc>, or <entity> object
#   - Added <proc[SQLAPI_GetFlagged].context[type|flag]||null>
#     - List all owners of the specified type that have the specified flag set.
#     - Valid types are player, npc, and entity
#   - Added <proc[SQLAPI_GetCurrentFlagged].context[type|flag]||null>
#     - List all owners of the specified type that have the specified flag set.
#     - Valid types are player, npc, and entity
#     - Will only return owner objects for those (players) that are online or
#       (npcs or entities) that are spawned.
#
#
# - v0.1.1  -  4/27/15
#   - Correctly distinguish between existent and expired flags when editing lists
#   - Math functions. Can now increment, decrement, multiply, and divide flags
#
# - v0.1.1  -  4/26/15
#   - Make <proc[SQLAPI_GetFlag].context[owner|flag]||null> handle lists natively
#   - Set list function works, may be expanded/revised at a later date
#   - Added Include and Remove list functions
#
# - v0.1.1  -  4/25/15
#   - Don't store escaped values in the db
#
# - v0.1.1  -  4/21/15
#   - Added <proc[SQLAPI_GetFlag].context[owner|flag]||null>
#     - Returns the flag value
#     - Does not return if the flag doesn't exist or is expired.
#
# - v0.1.1  -  4/20/15
#   - Added <proc[SQLAPI_ParseOwner].context[owner]||null>
#     - Specify an owner object and it returns the type.
#     - Return values are player, entity, npc, server, and thisPlayer.
#     - Does not return on invalid input. Notify console instead
#     - 'thisPlayer' is a literal string and should be handled in the calling
#       script. It's intended for the sqlflag command so the literal string
#       'player' can be used to denote the person issuing the command.
#   - Simplified the context required for GetFlagRecord, FlagExists, IsExpired,
#     and HasFlag procedure scripts. Now only require the owner and flag context
#     Eg.: <proc[SQLAPI_HasFlag].context[owner|flag]>
#
# - v0.1.1  -  4/20/15
#   - sqlflag command
#     - Allows setting/editing/deleting flags in game with a command
#     - Currently only the set flag code is written. Don't try to do any list
#       flags or removing flags yet!
#   - Added <proc[SQLAPI_GetFlagRecord].context[tablename|owner|flag]||null>
#     - Returns a raw flag record li@flagName|flagValue|expiriation
#     - Returns "SQLAPI OFFLINE" if the db is offline
#     - Really only meant for internal usage. There will be more user friendly
#       options available in the future.
#   - Added <proc[SQLAPI_FlagExists].context[tablename|owner|flag]>
#     - Boolean tag to check if a flag exists
#     - Does not return if the db is offline
#     - Really only meant for internal usage.
#   - Added <proc[SQLAPI_IsExpired].context[tablename|owner|flag]>
#     - Boolean tag to check if a flag exists
#     - Does not return if the flag does not exist OR the db is offline.
#     - Really only meant for internal usage.
#   - Added <proc[SQLAPI_HasFlag].context[tablename|owner|flag]>
#     - Boolean tag to check if a object has a flag.
#     - Returns true if the flag exists and is not expired.
#     - Returns false if the flag does not exist or is expired.
#     - Does not return if the db is offline.
#
# - v0.1  -  4/13/15
#   - Initial commit
#
#
#------------------------------------------------
#
#          TODO - Future Feature Fluff
#
#
#______________________________________________________________________________#

SQLAPI:
  type: world
  speed: 0
  debug: false
  action_map:
    set_list: '&pipe'
    include: '-&gt'
    remove: '&lt-'
    increment: '++|+'
    decrement: '--|-'
    multiply: '**|*'
    divide: '&fs&fs|&fs'
    clear: '&exc'

  events:
    on server start:
    - run locally start delay:1t

    on sqlflag set:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define flagValue '<c.flagValue.unescaped.sql_escaped||true>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally set_flag

    on sqlflag set_index:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define index '<c.index.unescaped.sql_escaped.as_int||1>'
    - define flagValue '<c.flagValue.unescaped.sql_escaped||true>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally set_index_flag

    on sqlflag clear:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - inject locally clear_flag

    on sqlflag include:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define flagValue '<c.flagValue.unescaped.sql_escaped>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally include_flag

    on sqlflag insert_index:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define index '<c.index.unescaped.sql_escaped.as_int||1>'
    - define flagValue '<c.flagValue.unescaped.sql_escaped||true>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally insert_index_flag

    on sqlflag remove:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define flagValue '<c.flagValue.unescaped.sql_escaped>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally remove_flag

    on sqlflag increment:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define flagValue '<c.flagValue.unescaped.sql_escaped.as_decimal||1>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally increment_flag

    on sqlflag decrement:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define flagValue '<c.flagValue.unescaped.sql_escaped.as_decimal||1>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally decrement_flag

    on sqlflag multiply:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define flagValue '<c.flagValue.unescaped.sql_escaped.as_decimal||1>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally multiply_flag

    on sqlflag divide:
    - define owner '<c.owner>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
    - if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagName '<c.flagName.sql_escaped||null>'
    - if %flagName% == null || <def[flagName].length> == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flagName!'
      - queue clear
      }
    - define flagValue '<c.flagValue.unescaped.sql_escaped.as_decimal||1>'
    - define expiration '<c.expiration.sql_escaped.as_duration.in_milliseconds.add_int[<server.current_time_milliseconds>]||0>'
    - inject locally divide_flag

    on sqlapi command:
    - if !<player.permission[sqlapi.admin]||false> && !<player.is_op> && !<c.server> {
      - queue clear
      }
    - determine passively FULFILLED
    - define arg1 '<c.args.get[1].escaped||null>'
    - if <def[arg1].is[==].to[--restart]> {
      - run s@SQLAPI_Msg delay:1t 'def:<&d>Restarting System!'
      - define isRelaod ''
      - inject locally start
      }

    on sqlflag command:
    - define time '<server.current_time_millis>'
    - if !<player.permission[sqlapi.admin]||false> && !<player.is_op> && !<c.server> {
      - queue clear
      }
    - determine passively FULFILLED
    - if <c.args.size> < 2 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>/sqlflag <&lt>owner<&gt> flagName(<&lb>#<&rb>)(<&co>action)(<&co>value) (duration<&co>duration)'
      - queue clear
      }

    - define owner '<parse:<c.args.get[1]||null>>'
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if %type% == null {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify valid flag holder!'
      - queue clear
      }
      else if %type% == thisPlayer {
      - if <c.server> {
        - announce to_console "<&b>SQLAPI<&co><&c> Must specify valid player object from console!"
        - queue clear
        }
      - define type 'player'
      - define owner '<player>'
      }
      else if %type% != server {
      - define owner '<def[owner].as_%type%>'
      }
    - define flagString '<c.args.get[2]>'
    - inject locally parse_FlagString

    - define duration '<c.args.get[3]||null>'
    - if <def[duration].starts_with[d<&co>]> || <def[duration].starts_with[duration<&co>]> {
      - define expiration '<def[duration].split[<&co>].get[2].as_duration||null>'
      - if %expiration% == null {
        - announce to_console '<&b>SQLAPI<&co><&c> <def[expiration].split[<&co>].get[2]||null> is not a valid duration!'
        - define expiration '0'
        }
        else {
        - define expiration '<def[expiration].in_milliseconds.add_int[<server.current_time_milliseconds>]>'
        }
      }
      else {
      - define expiration '0'
      }
#    - announce "Narrate values"
#    - narrate "<&2>==="
#    - narrate "size %size%"
#    - narrate "owner %owner% %type% <def[owner].uuid>"
#    - narrate "flag %flagName%"
#    - narrate "action %action%"
#    - narrate "flagvalue %flagvalue%"
#    - narrate "expiration %expiration%"
    - inject locally %action%_flag
    - inject locally msg_%action%
    - narrate "Time taken<&co> <server.current_time_millis.sub_int[%time%]>ms"
    - queue clear

  parseAction:
    - define actions '<script.list_keys[action_map]>'
    - foreach %actions% {
      - define map '<script.yaml_key[action_map.%value%].as_list||li@>'
      - if <def[map].contains_any[%action%]||false> {
        - define action '<def[value].to_lowercase>'
        - foreach stop
        }
      }
    - if %actions% !contains %action% {
      - define action 'set'
      }


  parse_FlagString:
    - define preparse '<def[flagString].escaped.split[&co]||null>'
    - define size '<def[preparse].size>'
    - define flagName '<def[preparse].get[1].unescaped.to_lowercase.sql_escaped||null>'
    - if %flagName% contains <&lb> {
      - define index '<def[flagName].after[<&lb>].replace[<&rb>]>'
      - define flagName '<def[flagName].before[<&lb>]>'
      - if <def[index].length> == 0 || %index% !matches number {
        - define index:!
        }
      }
    - if %size% > 2 {
      - define size 'extra'
      }
    - inject locally parse_flagString_%size%

  parse_flagString_1:
    - define flagValue 'true'
    - define action 'set'

  parse_flagString_2:
    - define action '<def[preparse].get[2]||null>'
    - inject locally parseAction
    - if <li@set|clear|increment|decrement|multiply|divide> contains %action% {
      - if %action% == set {
        - define flagValue '<def[preparse].get[2].unescaped.sql_escaped>'
        - if <def[index].exists> {
          - define action 'set_index'
          }
        }
        else if %action% != clear {
        - narrate "set value to 1"
        - define flagValue '1'
        }
      }
      else {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Must specify a flag value for %action% flag action!'
      - queue clear
      }

  parse_flagString_Extra:
    - define flagValue '<def[flagString].after[<def[preparse].get[2].unescaped><&co>].sql_escaped||null>'
    - define action '<def[preparse].get[2]||null>'
    - inject locally parseAction
    - if <def[index].exists> {
      - if li@set|set_list contains %action% {
        - define action 'set_index'
        }
        else if %action% == include {
        - define action 'insert_index'
        }
      }
    - if %action% == set {
      - define flagValue '<def[flagString].after[<def[preparse].get[1].unescaped><&co>].sql_escaped||null>'
      }
      else if <li@increment|decrement|multiply|divide> contains %action% {
      - if %flagValue% !matches decimal {
        - run s@SQLAPI_Msg delay:1t 'def:<&c>%flagValue% is not a valid number!'
        - queue clear
        }
      }


  start:
    - ^define yamlName 'SQLAPI'
    - ^define scriptName '<script.name>'
    - ^inject locally reloadYaml instantly
    - ^inject locally loadData instantly
    - ^if %useSql% {
      - announce "<&b>SQLAPI<&co><&c> Must be configured to use MySQL!" to_console
      - inject locally unload
      - queue stop
      }
    # Verify SQLManager is installed and ready
    - ^if !<server.list_scripts.parse[name].contains[SQLManager]> {
      - announce "<&b>SQLAPI<&co><&c> SQLManager not installed!" to_console
      - inject locally unload
      - queue stop
      }
    - ^repeat %retry% {
      - if !<yaml.list.contains[SQLManager_Offline]> {
        - announce "<&b>SQLAPI<&co><&c> Could not connect to SQLManager!" to_console
        - if %loop_index% == %retry% {
          - inject locally unload
          - queue stop
          }
        - announce "<&b>SQLAPI<&co><&c> Will attempt again in %retryDelay%..." to_console
        - wait %retryDelay%
        }
      }
    # This checks the status as set by SQLManager to not duplicate restart
    # processes. This is the only time this script needs to set the status.
    # The SQLManager will handle every other situation.
    - ^define status '<yaml[SQLManager_Offline].read[Offline_Cache.databases.%db%.status]||null>'
    - ^if <def[status].is[==].to[connecting]> {
      - announce "<&b>SQLManager<&co><&c> Already attempting to reconnect to %db% database!" to_console
      - queue stop
      }
      else {
      - yaml set 'id:SQLManager_Offline' 'Offline_Cache.databases.%db%.status:connecting'
      - yaml 'savefile:SQLManager/cache.yml' 'id:SQLManager_Offline'
      }
    - ^if <def[isReload].exists||false> {
      - run s@SQLManager p:restart delay:1t def:%yamlName%|%scriptName%|%db%
      - queue clear
      }
    - ^inject s@SQLManager
    - ^announce "<&b>SQLAPI<&co><&a> System loaded!" to_console
    - queue stop

  reloadYaml:
  # Reloads the yaml files and generates default files if they don't exist.
    - announce "<&b>SQLAPI<&co><&3> Loading system config files..." to_console
    - if !<server.has_file[SQLAPI/config.yml]> {
      - if <player> != null {
        - flag <player> ConfigFileGeneratorNotify:true
        - run s@ConfigFileGeneratorHelper def:SQLAPI|Configurations|false|false|false instantly
        - flag <player> ConfigFileGeneratorNotify:!
        }
        else {
        - run s@ConfigFileGeneratorHelper def:SQLAPI|Configurations instantly
        }
      }
    - if <yaml.list.contains[SQLAPI_config]> yaml unload 'id:SQLAPI_config'
    - yaml 'load:SQLAPI/config.yml' 'id:SQLAPI_config'
    - inject s@SQLAPI_SQLTables
    - announce "<&b>SQLAPI<&co><&a> System config files Loaded!" to_console

  loadData:
    - ^define yamlName 'SQLAPI'
    - ^define scriptName '<script.name>'
    - ^define useSql '<yaml[SQLAPI_config].read[config.MySQL.useSql]||false>'
    - ^define retry '<yaml[SQLAPI_config].read[config.MySQL.retry]||3>'
    - ^define retryDelay '<yaml[SQLAPI_config].read[config.MySQL.retryDelay]||10s>'
    - ^define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - ^define PlayerSQLFLagsTable '<yaml[SQLAPI_config].read[config.MySQL.tables.PlayerSQLFLags]||dsqlapi_playersqlflags>'
    - ^define NPCSQLFLagsTable '<yaml[SQLAPI_config].read[config.MySQL.tables.NPCSQLFLags]||dsqlapi_npcsqlflags>'
    - ^define EntitySQLFLagsTable '<yaml[SQLAPI_config].read[config.MySQL.tables.EntitySQLFLags]||dsqlapi_entitysqlflags>'
    - ^define ServerSQLFLagsTable '<yaml[SQLAPI_config].read[config.MySQL.tables.ServerSQLFLags]||dsqlapi_serversqlflags>'

  unload:
    - ^if <yaml.list.contains[SQLAPI_config]> {
      - announce "<&b>SQLAPI<&co><&3> Unloading config.yml file..." to_console
      - yaml unload 'id:SQLAPI_config'
      }
    - ^if <yaml.list.contains[SQLAPI_SQLTables]> {
      - announce "<&b>SQLAPI<&co><&3> Unloading SQLAPI_SQLTables file..." to_console
      - yaml unload 'id:SQLAPI_SQLTables'
      }
    - ^announce "<&b>SQLAPI<&co><&c> System disabled..." to_console


  clear_flag:
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define flagExists '<proc[SQLAPI_FlagExists].context[%owner%|%flagName%]||offline>'
    - if %flagExists% == offline {
      - announce to_console "<&b>SQLAPI<&co><&c> System Offline! Can not remove %flagName% for %owner%!"
      - queue clear
      }
    - if !%flagExists% {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>%owner% does not set %flagName%!'
      - queue clear
      }
    - if %type% == server {
      - define statement "DELETE FROM %tableName% WHERE flag='%flagName%';"
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - define statement "DELETE FROM %tableName% WHERE flag='%flagName%' AND uuid='%uuid%';"
      }
#    - sql id:%db% "update:<def[statement]>" save:id
    - inject s@SQLManager_Offline p:managedUpdateStatement

  set_flag:
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define flagExists '<proc[SQLAPI_FlagExists].context[%owner%|%flagName%]>'
    - if %flagExists% == offline {
      - announce to_console "<&b>SQLAPI<&co><&c> System Offline! Can not set %flagName% for %owner% to %flagValue% in %tableName%!"
      - queue clear
      }

    - if %type% == server {
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  set_index_flag:
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - announce to_console "<&b>SQLAPI<&co><&c> System Offline! Can not set index %index% %flagName% for %owner% to %flagValue% in %tableName%!"
      - queue clear
      }
    - if %record% != null {
      - define flagExists 'true'
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define isExpired 'false'
        }
        else {
        - define isExpired 'true'
        }
      }
      else {
      - define flagExists 'false'
      - define isExpired 'true'
      }

    - if %flagExists% && !%isExpired% {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if <def[flagVal].starts_with[|]> {
        - define flagVal '<def[flagVal].as_list>'
        - define flagValue '<&pipe><def[flagVal].get[2].to[<def[flagVal].size>].set[%flagValue%].at[%index%].replace[li@]>'
        }
        else {
        - define flagValue '<&pipe>%flagValue%'
        }
      }
      else {
      - define flagValue '<&pipe>%flagValue%'
      }

    - if %type% == server {
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  set_list_flag:
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>System Offline! Can not set %flagName% for %owner% to %flagValue% in %tableName%!'
      - queue clear
      }
    - if %record% != null {
      - define flagExists 'true'
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define isExpired 'false'
        }
        else {
        - define isExpired 'true'
        }
      }
      else {
      - define flagExists 'false'
      - define isExpired 'true'
      }

    - if %flagExists% && !%isExpired% {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if <def[flagVal].starts_with[|]> {
        - define flagVal '<def[flagVal].as_list>'
        - define flagValue '<&pipe><def[flagVal].get[2].to[<def[flagVal].size>].replace[li@]><&pipe>%flagValue%'
        }
        else {
        - define flagValue '<&pipe>%flagValue%'
        }
      }
      else {
      - define flagValue '<&pipe>%flagValue%'
      }

    - if %type% == server {
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  include_flag:
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>System Offline! Can not include %flagValue% in %flagName% for %owner% in %tableName%!'
      - queue clear
      }
    - if %record% != null {
      - define flagExists 'true'
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define isExpired 'false'
        }
        else {
        - define isExpired 'true'
        }
      }
      else {
      - define flagExists 'false'
      - define isExpired 'true'
      }

    - if %flagExists% && !%isExpired% {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if <def[flagVal].starts_with[|]> {
        - define flagVal '<def[flagVal].as_list>'
        - define flagValue '<&pipe><def[flagVal].get[2].to[<def[flagVal].size>].replace[li@]><&pipe>%flagValue%'
        }
        else {
        - define flagValue '<&pipe>%flagValue%'
        }
      }
      else {
      - define flagValue '<&pipe>%flagValue%'
      }

    - if %type% == server {
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  insert_index_flag:
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>System Offline! Can not insert %flagValue% at index %index% for %flagName% for %owner% in %tableName%!'
      - queue clear
      }
    - if %record% != null {
      - define flagExists 'true'
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define isExpired 'false'
        }
        else {
        - define isExpired 'true'
        }
      }
      else {
      - define flagExists 'false'
      - define isExpired 'true'
      }

    - if %flagExists% && !%isExpired% {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if <def[flagVal].starts_with[|]> {
        - define flagVal '<def[flagVal].as_list>'
        - define flagValue '<&pipe><def[flagVal].get[2].to[<def[flagVal].size>].insert[%flagValue%].at[%index%].replace[li@]>'
        }
        else {
        - define flagValue '<&pipe>%flagValue%'
        }
      }
      else {
      - define flagValue '<&pipe>%flagValue%'
      }

    - if %type% == server {
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  remove_flag:
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>System Offline! Can not remove %flagValue% from %flagName% for %owner% in %tableName%!'
      - queue clear
      }
    - if %record% != null {
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define flagExists 'true'
        }
        else {
        - define flagExists 'false'
        }
      }
      else {
      - define flagExists 'false'
      }

    - if !%flagExists% {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>%owner% does not set %flagName%!'
      - queue clear
      }
    - define flagVal '<def[record].get[2].unescaped.as_list||null>'
    - if <def[flagVal].as_list.contains_any[%flagValue%]> {
      - define flagValue '<&pipe><def[flagVal].get[2].to[<def[flagVal].size>].exclude[%flagValue%].replace[li@]>'
      }
      else {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>%flagName% does not contain any %flagValue% for %owner%!'
      - queue clear
      }

    - if <def[flagValue].is[==].to[<&pipe>]> {
      - define delete 'true'
      }
      else {
      - define delete 'false'
      }

    - if %type% == server {
      - if %delete% {
        - define statement "DELETE FROM %tableName% WHERE flag='%flagName%';"
        }
        else {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %delete% {
        - define statement "DELETE FROM %tableName% WHERE flag='%flagName%' AND uuid='%uuid%';"
        }
        else {
        - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  increment_flag:
    - if %flagValue% !matches decimal {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>%flagValue% is not a valid number! Not incrementing %flagName% for %owner%!'
      - queue clear
      }
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>System Offline! Can not increment %flagName% for %owner% by %flagValue% in %tableName%!'
      - queue clear
      }
    - if %record% != null {
      - define flagExists 'true'
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define isExpired 'false'
        }
        else {
        - define isExpired 'true'
        }
      }
      else {
      - define flagExists 'false'
      - define isExpired 'true'
      }

    - if %flagExists% {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if %flagVal% !matches decimal {
        - run s@SQLAPI_Msg delay:1t 'def:<&c>Not incrementing %flagName% for %owner%! Current value %flagVal% is not numeric!'
        - queue clear
        }
      }

    - if %type% == server {
      - if %flagExists% {
        - if %isExpired% {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
          }
          else {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = value + '%flagValue%' WHERE flag='%flagName%';"
          }
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - if %isExpired% {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
          }
          else {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = value + '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
          }
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  decrement_flag:
    - if %flagValue% !matches decimal {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>%flagValue% is not a valid number! Not decrementing %flagName% for %owner%!'
      - queue clear
      }
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>System Offline! Can not decrement %flagName% for %owner% by %flagValue% in %tableName%!'
      - queue clear
      }
    - if %record% != null {
      - define flagExists 'true'
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define isExpired 'false'
        }
        else {
        - define isExpired 'true'
        }
      }
      else {
      - define flagExists 'false'
      - define isExpired 'true'
      }

    - if %flagExists% {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if %flagVal% !matches decimal {
        - run s@SQLAPI_Msg delay:1t 'def:<&c>Not decrementing %flagName% for %owner%! Current value %flagVal% is not numeric!'
        - queue clear
        }
      }

    - if %type% == server {
      - if %flagExists% {
        - if %isExpired% {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
          }
          else {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = value - '%flagValue%' WHERE flag='%flagName%';"
          }
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - if %isExpired% {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
          }
          else {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = value - '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
          }
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  multiply_flag:
    - if %flagValue% !matches decimal {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>%flagValue% is not a valid number! Not multiplying %flagName% for %owner%!'
      - queue clear
      }
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>System Offline! Can not multiply %flagName% for %owner% by %flagValue% in %tableName%!'
      - queue clear
      }
    - if %record% != null {
      - define flagExists 'true'
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define isExpired 'false'
        }
        else {
        - define isExpired 'true'
        }
      }
      else {
      - define flagExists 'false'
      - define isExpired 'true'
      }

    - if %flagExists% {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if %flagVal% !matches decimal {
        - run s@SQLAPI_Msg delay:1t 'def:<&c>Not multiplying %flagName% for %owner%! Current value %flagVal% is not numeric!'
        - queue clear
        }
      }

    - if %type% == server {
      - if %flagExists% {
        - if %isExpired% {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
          }
          else {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = value * '%flagValue%' WHERE flag='%flagName%';"
          }
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - if %isExpired% {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
          }
          else {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = value * '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
          }
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

  divide_flag:
    - if %flagValue% !matches decimal {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>%flagValue% is not a valid number! Not dividing %flagName% for %owner%!'
      - queue clear
      }
    - if %flagValue% == 0 {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>Can not divide by 0! Not dividing %flagName% for %owner%!'
      - queue clear
      }
    - define yamlName 'SQLAPI'
    - define scriptName 'SQLAPI'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flagName%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - run s@SQLAPI_Msg delay:1t 'def:<&c>System Offline! Can not divide %flagName% for %owner% by %flagValue% in %tableName%!'
      - queue clear
      }
    - if %record% != null {
      - define flagExists 'true'
      - define expires '<def[record].get[3].unescaped||0>'
      - if %expires% == 0 || %expires% > <server.current_time_millis> {
        - define isExpired 'false'
        }
        else {
        - define isExpired 'true'
        }
      }
      else {
      - define flagExists 'false'
      - define isExpired 'true'
      }

    - if %flagExists% {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if %flagVal% !matches decimal {
        - run s@SQLAPI_Msg delay:1t 'def:<&c>Not dividing %flagName% for %owner%! Current value %flagVal% is not numeric!'
        - queue clear
        }
      }

    - if %type% == server {
      - if %flagExists% {
        - if %isExpired% {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%';"
          }
          else {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = value / '%flagValue%' WHERE flag='%flagName%';"
          }
        }
        else {
        - define statement "INSERT INTO %tableName% (flag, value, expiration) VALUES ('%flagName%', '%flagValue%', '%expiration%');"
        }
      }
      else {
      - define uuid '<tern[<def[type].is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - if %flagExists% {
        - if %isExpired% {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
          }
          else {
          - define statement "UPDATE %tableName% SET expiration = '%expiration%', value = value / '%flagValue%' WHERE flag='%flagName%' AND uuid='%uuid%';"
          }
        }
        else {
        - define statement "INSERT INTO %tableName% (uuid, flag, value, expiration) VALUES ('%uuid%', '%flagName%', '%flagValue%', '%expiration%');"
        }
      }
    - inject s@SQLManager_Offline p:managedUpdateStatement

#########################
# Command messages
  msg_set:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Set <def[flagName].unescaped> to <def[flagValue].replace[|].with[`]> for %owner%<tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'

  msg_clear:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Cleared <def[flagName].unescaped> for %owner%'

  msg_set_list:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Set list flag <def[flagName].unescaped> to <def[flagValue].replace[|].with[`].after[`]> for %owner%<tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'

  msg_set_index:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Set <def[flagName].unescaped> list to <def[flagValue].replace[|].with[`].after[`]> starting at index %index% for %owner%<tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'

  msg_include:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Included <def[flagValue].replace[|].with[`].after[`]> in <def[flagName].unescaped> list for %owner%<tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'

  msg_insert_index:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Included <def[flagValue].replace[|].with[`].after[`]> in <def[flagName].unescaped> list starting at index %index% for %owner%<tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'

  msg_remove:
    - if <def[flagValue].is[==].to[<&pipe>]> {
      - run s@SQLAPI_Msg delay:1t 'def:<&7>Cleared <def[flagName].unescaped> for %owner%'
      }
      else {
      - run s@SQLAPI_Msg delay:1t 'def:<&7>Removed <def[flagValue].replace[|].with[`].after[`]> from <def[flagName].unescaped> list for %owner%<tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'
      }

  msg_increment:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Increased <def[flagName].unescaped> for %owner% by <def[flagValue].unescaped><tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'

  msg_decrement:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Decreased <def[flagName].unescaped> for %owner% by <def[flagValue].unescaped><tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'

  msg_multiply:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Multiplied <def[flagName].unescaped> for %owner% by <def[flagValue].unescaped><tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'

  msg_divide:
    - run s@SQLAPI_Msg delay:1t 'def:<&7>Divided <def[flagName].unescaped> for %owner% by <def[flagValue].unescaped><tern[<def[expiration].is[==].to[0]>]:<&dot>||<&dot> Expires in <def[duration].split[<&co>].get[2].as_duration.formatted><&dot>>'



SQLAPI_ParseOwner:
# Usage: <proc[SQLAPI_ParseOwner].context[owner]||null>
  type: procedure
  debug: false
  definitions: owner
  script:
    - define owner "<parse:<def[owner]>>"
    - inject locally <def[owner].type||null>
    - announce to_console "<&b>SQLAPI<&co><&c> Must specify valid owner object!"
    - announce to_console "<&b>SQLAPI<&co><&c> Can not parse %owner%"

  player:
    - determine 'player'

  entity:
    - determine 'entity'

  npc:
    - determine 'npc'

  element:
    - if %owner% == server {
      - determine 'server'
      }
      else if %owner% == player {
      - determine 'thisPlayer'
      }

SQLAPI_GetFlagRecord:
# Usage: <proc[SQLAPI_GetFlagRecord].context[owner|flag]||null>
  type: procedure
  debug: false
  definitions: owner|flag
  script:
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if li@player|entity|npc|server !contains %type% {
      - announce to_console "<&b>SQLAPI<&co> <&c>Invalid type specified in flag lookup!"
      - announce to_console "<&b>SQLAPI<&co> <&b>Attempted<&co> %owner% %type% %flag%"
      - queue clear
      }
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - if !<proc[SQLManager_ConnectionCheck].context[%db%]> {
      - announce to_console "<&b>SQLAPI<&co> <&c>Database Offline!"
      - yaml set 'id:SQLManager_Offline' 'Offline_Cache.databases.%db%.status:offline'
      - yaml 'savefile:SQLManager/cache.yml' 'id:SQLManager_Offline'
      - run s@SQLManager p:restart def:SQLAPI|SQLAPI|%db%
      - determine 'SQLAPI OFFLINE'
      }
    - if %owner% == server {
      - sql id:%db% "query:SELECT flag,value,expiration FROM %tablename% WHERE flag='%flag%';" save:record
      }
      else {
      - define uuid '<tern[<def[owner].type.is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - sql id:%db% "query:SELECT flag,value,expiration FROM %tablename% WHERE flag='%flag%' AND uuid='%uuid%';" save:record
      }
    - define record '<entry[record].result>'
    - if <def[record].size> == 1 {
      - determine '<entry[record].result.get[1].split[/]||null>'
      }
    - if <def[record].size> != 0 {
      - announce to_console "<&b>SQLAPI<&co> <&c>%tablename% has <def[record].size> records of %flag% for %uuid%!"
      - announce to_console "<&b>SQLAPI<&co> <&c>Only returning the first record!"
      - determine '<entry[record].result.get[1].split[/]||null>'
      }


SQLAPI_FlagExists:
# Usage: <proc[SQLAPI_FlagExists].context[owner|flag]>
  type: procedure
  debug: false
  definitions: owner|flag
  script:
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flag%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - queue clear
      }
    - if %record% != null {
      - determine 'true'
      }
    - determine 'false'


SQLAPI_IsExpired:
# Usage: <proc[SQLAPI_IsExpired].context[owner|flag]>
  type: procedure
  debug: false
  definitions: owner|flag
  script:
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flag%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - queue clear
      }
    - if %record% != null {
      - define expiration '<def[record].get[3].unescaped||null>'
      - if %expiration% == 0 || %expiration% > <server.current_time_millis> {
        - determine 'false'
        }
      }
    - determine 'true'


SQLAPI_Expiration:
# Usage: <proc[SQLAPI_Expiration].context[owner|flag]>
  type: procedure
  debug: false
  definitions: owner|flag
  script:
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flag%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - queue clear
      }
    - if %record% != null {
      - define expiration '<def[record].get[3].unescaped||null>'
      - if %expiration% == 0 {
        - determine '<el@val[0].as_duration>'
        }
      - if %expiration% > <server.current_time_millis> {
        - determine '<el@val[<def[expiration].sub_int[<server.current_time_millis>].div[1000]>s].as_duration>'
        }
      }


SQLAPI_HasFlag:
# Usage: <proc[SQLAPI_HasFlag].context[owner|flag]>
  type: procedure
  debug: false
  definitions: owner|flag
  script:
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flag%]||null>'
    - if '<def[record].equals_case_sensitive[SQLAPI OFFLINE]>' {
      - queue clear
      }
    - if %record% != null {
      - define expiration '<def[record].get[3].unescaped||0>'
      - if %expiration% == 0 || %expiration% > <server.current_time_millis> {
        - determine 'true'
        }
      }
    - determine 'false'


SQLAPI_GetFlag:
# Usage: <proc[SQLAPI_GetFlag].context[owner|flag]||null>
  type: procedure
  debug: false
  definitions: owner|flag
  script:
    - define record '<proc[SQLAPI_GetFlagRecord].context[%owner%|%flag%]||null>'
    - if %record% == null || <def[record].equals_case_sensitive[SQLAPI OFFLINE]> {
      - queue clear
      }
    - define expiration '<def[record].get[3].unescaped||0>'
    - if %expiration% == 0 || %expiration% > <server.current_time_millis> {
      - define flagVal '<def[record].get[2].unescaped||null>'
      - if <def[flagVal].starts_with[|]> {
        - define flagVal '<def[flagVal].as_list>'
        - determine '<def[flagVal].get[2].to[<def[flagVal].size>]>'
        }
        else {
        - determine '%flagVal%'
        }
      }


SQLAPI_ListFlags:
# Usage: <proc[SQLAPI_ListFlags].context[owner]||null>
  type: procedure
  debug: false
  definitions: owner
  script:
    - define type '<proc[SQLAPI_ParseOwner].context[%owner%]||null>'
    - if li@player|entity|npc|server !contains %type% {
      - announce to_console "<&b>SQLAPI<&co> <&c>Invalid type specified in flag lookup!"
      - announce to_console "<&b>SQLAPI<&co> <&b>Attempted<&co> %owner% %type%"
      - queue clear
      }
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - if !<proc[SQLManager_ConnectionCheck].context[%db%]> {
      - announce to_console "<&b>SQLAPI<&co> <&c>Database Offline!"
      - yaml set 'id:SQLManager_Offline' 'Offline_Cache.databases.%db%.status:offline'
      - yaml 'savefile:SQLManager/cache.yml' 'id:SQLManager_Offline'
      - run s@SQLManager p:restart def:SQLAPI|SQLAPI|%db%
      - determine 'SQLAPI OFFLINE'
      }
    - define now '<server.current_time_millis>'
    - if %owner% == server {
      - sql id:%db% "query:SELECT flag FROM %tablename% WHERE expiration>'%now%' OR expiration='0';" save:record
      }
      else {
      - define uuid '<tern[<def[owner].type.is[==].to[npc]>]:<def[owner].id>||<def[owner].uuid>>'
      - sql id:%db% "query:SELECT flag FROM %tablename% WHERE uuid='%uuid%' AND (expiration>'%now%' OR expiration='0');" save:record
      }
    - determine '<entry[record].result.parse[before[/]]>'


SQLAPI_GetFlagged:
# Usage: <proc[SQLAPI_GetFlagged].context[type|flag]||null>
  type: procedure
  debug: false
  definitions: type|flag
  script:
    - if li@player|entity|npc !contains %type% {
      - announce to_console "<&b>SQLAPI<&co> <&c>Invalid type specified in flag lookup!"
      - announce to_console "<&b>SQLAPI<&co> <&b>Attempted<&co> %owner% %type%"
      - queue clear
      }
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - if !<proc[SQLManager_ConnectionCheck].context[%db%]> {
      - announce to_console "<&b>SQLAPI<&co> <&c>Database Offline!"
      - yaml set 'id:SQLManager_Offline' 'Offline_Cache.databases.%db%.status:offline'
      - yaml 'savefile:SQLManager/cache.yml' 'id:SQLManager_Offline'
      - run s@SQLManager p:restart def:SQLAPI|SQLAPI|%db%
      - determine 'SQLAPI OFFLINE'
      }
    - define now '<server.current_time_millis>'
    - sql id:%db% "query:SELECT uuid FROM %tablename% WHERE flag='%flag%' AND (expiration>'%now%' OR expiration='0');" save:record
    - determine '<entry[record].result.parse[before[/]].parse[as_%type%]>'


SQLAPI_GetCurrentFlagged:
# Usage: <proc[SQLAPI_GetCurrentFlagged].context[type|flag]||null>
  type: procedure
  debug: false
  definitions: type|flag
  script:
    - if li@player|entity|npc !contains %type% {
      - announce to_console "<&b>SQLAPI<&co> <&c>Invalid type specified in flag lookup!"
      - announce to_console "<&b>SQLAPI<&co> <&b>Attempted<&co> %owner% %type%"
      - queue clear
      }
    - define tableName '<yaml[SQLAPI_config].read[config.MySQL.tables.%type%SQLFLags]||dsqlapi_%type%sqlflags>'
    - define db '<yaml[SQLAPI_config].read[config.MySQL.database]||SQLAPI>'
    - if !<proc[SQLManager_ConnectionCheck].context[%db%]> {
      - announce to_console "<&b>SQLAPI<&co> <&c>Database Offline!"
      - yaml set 'id:SQLManager_Offline' 'Offline_Cache.databases.%db%.status:offline'
      - yaml 'savefile:SQLManager/cache.yml' 'id:SQLManager_Offline'
      - run s@SQLManager p:restart def:SQLAPI|SQLAPI|%db%
      - determine 'SQLAPI OFFLINE'
      }
    - define now '<server.current_time_millis>'
    - sql id:%db% "query:SELECT uuid FROM %tablename% WHERE flag='%flag%' AND (expiration>'%now%' OR expiration='0');" save:record
    - if %type% == player {
      - determine '<entry[record].result.parse[before[/]].parse[as_%type%].filter[is_online]>'
      }
      else {
      - determine '<entry[record].result.parse[before[/]].parse[as_%type%].filter[is_spawned]>'
      }


SQLAPI_LineWrap:
  # Turn a long string into a list of smaller strings
  type: procedure
  definitions: string|targetLen
  speed: 0
  debug: false

  script:
    - define stringLen '<def[string].length>'
    - if <def[stringLen].is[MORE].than[%targetLen%]> {
      - define lines 'li@'
      - while <def[stringLen].is[MORE].than[0]> {
        - define low '<def[increment].add[1].as_int||1>'
        - define hi '<def[increment].add[<def[targetLen].add[1]>].as_int||%targetLen%>'
        - define pass '<el@val[%string%].substring[%low%,%hi%]>'
        - if <def[pass].length.is[==].to[%stringLen%]> {
          - define lines '<def[lines].include[<el@val[%pass%]>]||<def[lines]>>'
          - while stop
          }
          else {
          - define brake '<def[pass].last_index_of[ ]>'
          - define increment '<def[increment].add[%brake%]||%brake%>'
          - define passtrim '<el@val[<def[pass].substring[1,<t[<def[brake].is[MORE].than[0]>]:%brake%||<def[pass].length>>]>]>'
          - define lines '<def[lines].include[<el@val[%passtrim%]>]||<def[lines]>>'
          - define stringLen '<def[stringLen].sub[%brake%]>'
          }
        - if <def[loop_index].is[MORE].than[10]> {
          - while stop
          }
        }
      - determine '<def[lines].as_list>'
      }
      else {
      - determine '<def[string].as_list>'
      }


SQLAPI_Msg:
  type: item
  speed: 0
  debug: false
  material: i@human_skull
  display name: "<&4>  [<&6>SQPAPI<&4>]"
  lore:
  - <&5>Click for Help
  script:
    - ^define text '<&4>[<&6>SQPAPI<&4>]'
    - ^define hover '<&chr[007B]><i@SQLAPI_Msg.json><&chr[007D]>'
    - ^define click '/SQPAPI help'
    - ^define button "text:'%text%',clickEvent:<&chr[007B]>action:run_command,value:'%click%'<&chr[007D]>,hoverEvent:<&chr[007B]>action:show_item,value:'%hover%'<&chr[007d]>"
    - ^define spacer "text:'  '"
    - ^define color '<&f>'
    - ^define colorCheck '<def[1].substring[1,2]>'
    - ^if <def[colorCheck].starts_with[<&ss>]> {
      - define colorCheck '<def[colorCheck].replace[<&ss>]>'
      - if <def[colorCheck].matches[[0-9a-fA-Fk-oK-OrR]]> {
        - define color '<&%colorCheck%>'
        }
      }
    - ^if <player.is_player||false> {
      - define lines '<proc[SQLAPI_LineWrap].context[%1%|45]>'
      - foreach <def[lines]> {
        - define msg "text:'%color%<def[value].replace[`].with[<&pipe>]>'"
        - execute as_server "tellraw <player.name> <&chr[007B]>text:'',extra:[<&chr[007B]>%button%<&chr[007D]>,<&chr[007B]>%spacer%<&chr[007D]>,<&chr[007B]>%msg%<&chr[007D]>]<&chr[007D]>"
        }
      }
    - ^announce to_console "<&4><&lb><&6>SQPAPI<&4><&rb> %1%"

################################################################################
#                                                                              #
# Configuration Files                                                          #
#                                                                              #
#   These are the default config files. They will be used to build the default #
# config file and data storage files.                                          #
#                                                                              #
#______________________________________________________________________________#
#                                                                              #
#______________________________DO_NOT_EDIT_THIS_DATA___________________________#
#______________________________________________________________________________#


SQLAPI_Configurations:
  type: yaml data
  debug: false

  config:
    MySQL:
      useSql: false
      connection:
        keepAlive: 5m
        retry: 3
        retryDelay: 10s
        host: localhost
        port: 3306
        username: root
        password: password
      database: SQLAPI
      tables:
        PlayerSQLFLags: dsqlapi_playersqlflags
        NPCSQLFLags: dsqlapi_npcsqlflags
        EntitySQLFLags: dsqlapi_entitysqlflags
        ServerSQLFLags: dsqlapi_serversqlflags


################################################################################
#                                                                              #
# SQL Table Structure                                                          #
#                                                                              #
#   This is where the table structure is defined. It would be best if you do   #
# not touch anything in this section!                                          #
#                                                                              #
#______________________________________________________________________________#
#                                                                              #
#______________________________DO_NOT_EDIT_THIS_DATA___________________________#
#______________________________________________________________________________#


SQLAPI_SQLTables:
# This script gets injected from the SQLManager on system start. It sets up some
# data it needs and loads the table structure so it's ready for the SQLManager.
  type: task
  debug: false

  script:
    - define sqlScriptName '<script.name>'
    - define sqlFile '<script.relative_filename>'
    - if <yaml.list.contains[%sqlScriptName%]> yaml unload 'id:%sqlScriptName%'
    - yaml 'load:%sqlFile%' fix_formatting 'id:%sqlScriptName%'
    - if !<yaml.list.contains[%sqlScriptName%]> {
      - announce "<&c>SQLAPI<&co><&b> An error occurred while loading %sqlScriptname%!" to_console
      - announce "<&b>SQLAPI<&co><&3> Aborting..." to_console
      - inject s@%scriptName% p:unload
      - queue stop
      }

  tables:
    PlayerSQLFLags:
      columns:
        id: INT AUTO_INCREMENT PRIMARY KEY
        uuid: varchar(36)
        flag: BLOB
        value: MEDIUMBLOB
        expiration: BIGINT
    NPCSQLFLags:
      columns:
        id: INT AUTO_INCREMENT PRIMARY KEY
        uuid: varchar(36)
        flag: BLOB
        value: MEDIUMBLOB
        expiration: BIGINT
    EntitySQLFLags:
      columns:
        id: INT AUTO_INCREMENT PRIMARY KEY
        uuid: varchar(36)
        flag: BLOB
        value: MEDIUMBLOB
        expiration: BIGINT
    ServerSQLFLags:
      columns:
        id: INT AUTO_INCREMENT PRIMARY KEY
        flag: BLOB
        value: MEDIUMBLOB
        expiration: BIGINT


#