forked from dapnet-core/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6_Protocol_Definitions.tex
3452 lines (3019 loc) · 118 KB
/
6_Protocol_Definitions.tex
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
\chapter{Protocol Definitions}
\section{Input Data Validation}
\subsection{Name}
\label{protocoldef:inputvalidation:name}
First transform to lowercase and remove whitespaces everywhere in the String. Then check against\\
\verb|^[a-z0-9._\-]{3,40}$|
\subsection{Bcrypt Hash}
\label{protocoldef:inputvalidation:bcrypt}
\verb|^\$2[aby]?\$\d{1,2}\$[.\/A-Za-z0-9]{53}$|
\subsection{Email Address}
\label{protocoldef:inputvalidation:email}
\verb|/.+@.+\..+/i|\\
The user MMI should do a precheck on the email address. Example for NodeJs: \url{https://github.com/mailcheck/mailcheck}.
\subsection{Roles}
\label{protocoldef:inputvalidation:roles}
Get the actual set of allowed roles from the Auth Service at startup and check that the given value is in the returned array. See \ref{protocoldef:auth:api} for the API call to the Auth Service.
The JSON Value must be an Array with at least one entry. All entries must be a valid role. All entries have to be different, no repetitions of given roles are allow. They have to be filtered out if they exist.
\subsection{Auth Key}
\label{protocoldef:inputvalidation:authkey}
\verb|^[a-zA-Z0-9]{3,40}$|
\subsection{Owners}
\label{protocoldef:inputvalidation:owners}
Each entry of the array must validate successfully against \ref{protocoldef:inputvalidation:name}. No checking, if username is existing. The array must contain at least one element.
\subsection{Rubric Number}
\label{protocoldef:inputvalidation:rubricnumber}
The rubric number must be an integer >= 1 and <= 95.
\subsection{Rubric Label}
\label{protocoldef:inputvalidation:rubriclabel}
String with only \verb|a-zA-Z0-9_-| and max length of TBD.
\subsection{Transmitter Groups}
\label{protocoldef:inputvalidation:transmittergroup}
String with only \verb|a-zA-Z0-9_-| and max length of TBD.
\subsection{Rubric Cyclic Transmit Interval}
\label{protocoldef:inputvalidation:cyclictransmitinterval}
Integer value between 0 and 60*60*24*30.
\subsection{Description}
\label{protocoldef:inputvalidation:description}
The description has to be a string with arbitrary content. Max length 45 characters.
\subsection{RIC}
\label{protocoldef:inputvalidation:ric}
Integer value between 1 and $2^{21}-1$. There are reserved ranges that are not usable (i.e. 0-7, 2007664-2007671, 2045056-2045063).
\subsection{Function Bits}
\label{protocoldef:inputvalidation:function}
Integer value >= 0 and <= 3.
\subsection{Pager Type}
\label{protocoldef:inputvalidation:pagertype}
String
\todo{TBD}
\subsection{Transmitter Usage}
\label{protocoldef:inputvalidation:usage}
Valid values are \verb|wirerange| or \verb|personal|.
\subsection{Transmitter Timeslots}
\label{protocoldef:inputvalidation:timeslots}
A JSON Array of \textbf{exact} 16 boolean values.
\subsection{Transmitter Output Power}
\label{protocoldef:inputvalidation:power}
Float Value, > 0, round to 2 decimals. Max value 1000
\subsection{Coordinates}
\label{protocoldef:inputvalidation:coordinates}
JSON Array of two float, may be negative.
\todo{check ranges}
\subsection{Transmitter Antenna Type}
\label{protocoldef:inputvalidation:antennatype}
String
\todo{define}
\subsection{Transmitter Antenna Gain}
\label{protocoldef:inputvalidation:antennagain}
Float, can be negative min = -40, max = 40
\subsection{Transmitter Antenna Direction}
\label{protocoldef:inputvalidation:antennadirection}
Integer, if given as float -> round. Then modulo 360
\subsection{Transmitter Antenna Height}
\label{protocoldef:inputvalidation:antennaagl}
Integer, if given as float -> round. Always greater then 0.
\section{Microservices API}
\label{protocoldef:microservicesapi}
\subsection{Preamble}
All HTTP(s) communication should be compress with gzip to reduce network load. That's especially important for the answers to GET-calls of all entity's details.
See \hyperref[internalprog:microservices]{Microservices definition}.
\subsection{Filtering and pagination in detailed lists}
\label{protocoldef:filteringandpagination}
For the endpoints \verb|GET /users|, \verb|GET /nodes|, \verb|GET /transmitters| and \verb|GET /rubrics|, there are the following GET parameters available for pagination and filtering.
\begin{table}[htbp]
\label{tab:protocoldef:permissionmatrix:usersdb}
\begin{tabular}{|l|p{8.5cm}|} \hline
Parameter & Description \\ \hline \hline
\verb|?skip=<n>&limit=<m>| & Used for pagination, just output <m> entries and skip the first <n> ones. \\
& Mapping to CouchDB: transparent \\ \hline
\verb|?startkey="dh3wr"\&endkey="dl2ic"| & Get all entries with an \verb|_id| between \verb|dh3wr| and \verb|dl2ic|. \\
& Mapping to CouchDB: transparent \\ \hline
\verb|?startswith="dh3"| & Get all entries where the \verb|_id| starts with \verb|dh3|. Used for AJAX based search in tables on website. \\
& Mapping to CouchDB: \verb|?startkey="dh3"&endkey="dh3\ufff0"| \\ \hline
\end{tabular}
\caption{Pagination and filtering syntax}
\end{table}
\textbf{Attention:} The parameter \verb|?include_docs=true| has to be included by the Microservice where it is stated in the detailed description below.\\
\newpage
\subsection{Database Service}
\subsubsection{GET /users}
\label{protocoldef:microservicesapi:database:getusers}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Returns all users (depending on the filtering in \ref{protocoldef:filteringandpagination} in JSON format. \\ \hline
Permission & \verb|user.read| \\ \hline
Mapping to CouchDB & \verb|GET /users/_design/users/_view/byId?include_docs=true|\\ \hline
\end{tabular}
\end{table}
\colorbox{red}{Special treatment for user database: The \texttt{password} field has always to be filtered out.}\\
\textbf{Auth response: \texttt{true}:}
\begin{lstlisting}
{
"total_rows": 2,
"offset": 0,
"rows": [
{
"_id": "dh3wr",
"_rev": "1-09352254509c9ddf86e80fd83868d557",
"email": "[email protected]",
"roles": "user",
"enabled": true,
"created_on": "2018-07-08T11:50:02.168325Z",
"created_by": "dl2ic"
"changed_on": "2018-07-08T11:50:02.168325Z",
"changed_by": "dl2ic
}, ...
]
}
\end{lstlisting}
\textit{Whitelist:} Transparent, no filtering needed\\
\textbf{Auth response: \texttt{limited}:}\\
If \verb|_id == <username>| output the corresponding document transparent. All other document's\\
\textit{Whitelist:} \verb|_id, roles, enabled|
\begin{lstlisting}
{
"total_rows": 2,
"offset": 0,
"rows": [
{
"_id": "dh3wr",
"_rev": "1-09352254509c9ddf86e80fd83868d557",
"email": "[email protected]",
"roles": ["user","admin"],
"enabled": true,
"created_on": "2018-07-08T11:50:02.168325Z",
"created_by": "dl2ic"
"changed_on": "2018-07-08T11:50:02.168325Z",
"changed_by": "dl2ic
},
{
"_id": "dl2abc",
"roles": ["user"],
"enabled": true
}
]
}
\end{lstlisting}
\textbf{Auth response: \texttt{false}:}\\
Send \verb|403 Forbidden|.
\newpage
\subsubsection{GET /users/<username>}
\label{protocoldef:microservicesapi:database:getusers/username}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return details of <username> in JSON format. \\ \hline
Permission & \verb|user.read/<username>| \\ \hline
Mapping to CouchDB & \verb|GET /users/<username>|\\ \hline
\end{tabular}
\end{table}
\colorbox{red}{Special treatment for user database: The \texttt{password} field has always to be filtered out.}\\
\textbf{Auth response: \texttt{true}:}
\begin{lstlisting}
{
"_id": "dh3wr",
"_rev": "1-09352254509c9ddf86e80fd83868d557",
"email": "[email protected]",
"roles": ["user"],
"enabled": true,
"created_on": "2018-07-08T11:50:02.168325Z",
"created_by": "dl2ic",
"changed_on": "2018-07-08T11:50:02.168325Z",
"changed_by": "dl2ic
}
\end{lstlisting}
\textbf{Auth response: \texttt{limited}:}\\
If \verb|_id == <username>| output the corresponding document transparent.\\
If not:\\
\textit{Whitelist:} \verb|_id, roles, enabled|
\textbf{Auth response: \texttt{false}:}\\
Send \verb|403 Forbidden|.
\subsubsection{GET /users/<usernames}
\label{protocoldef:microservicesapi:database:getusers/_usernames}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return just an JSON array of all enabled usernames. Used where selections have to be done on the website. \\ \hline
Permission & \verb|user.list| \\ \hline
Mapping to CouchDB & \verb|GET /users/_design/users/_list/usernames/byId|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
\begin{lstlisting}
["dh3wr","dl2ic"]
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{GET /users/<username>/avatar.jpg}
\label{protocoldef:microservicesapi:database:getusers/username/avatar.jpg}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return the attachment called avatar.jpg for the given user \\ \hline
Permission & \verb|user.list| \\ \hline
Mapping to CouchDB & \verb|GET /users/<username>/avatar.jpg|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
Get image with Content-Type: image/jpeg
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\newpage
\subsubsection{PUT /users - Add new user}
\label{protocoldef:microservicesapi:database:putusers/username_create}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Add a non-existing new user with \_id <username>\\ \hline
Permission & \verb|user.create| \\ \hline
Mapping to CouchDB & \verb|PUT /users/<username>|\\ \hline
Mandatory fields & \verb|_id, password, email, roles, enabled| \\ \hline
Field validation & \verb|_id :| \ref{protocoldef:inputvalidation:name}| \\
& \verb|password :| \ref{protocoldef:inputvalidation:bcrypt} \\
& \verb|email :| \ref{protocoldef:inputvalidation:email} \\
& \verb|roles :| \ref{protocoldef:inputvalidation:roles} \\
& \verb|enabled :| boolean\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
User to Database-Service: Example content to add user dl6pt
\begin{lstlisting}
{
"_id" : "dl6pt",
"password": "$2y$12$lqUueRVo94f439Tt7zqrZOHPfm6YoBzNawWLLIykF3nMip3L6mxLK",
"email": "[email protected]",
"roles": ["admin"],
"enabled": true
}
\end{lstlisting}
Mapping to CouchDB with adding \verb|created_*| information by database microservice:\\
\begin{lstlisting}
{
"_id" : "dl6pt",
"password": "$2y$12$lqUueRVo94f439Tt7zqrZOHPfm6YoBzNawWLLIykF3nMip3L6mxLK",
"email": "[email protected]",
"roles": ["admin"],
"enabled": true,
"created_on": "2018-07-08T11:50:02.168325Z",
"created_by": <username from basic-auth>
}
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{PUT /users - Edit existing user}
\label{protocoldef:microservicesapi:database:putusers/username_update}
Edit is differentiated from create by the presence of the \colorbox{red}{\texttt{\_rev}} field.
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Edit the existing user <username>.\\ \hline
Permission & \verb|user.update/<username>| \\ \hline
Mapping to CouchDB & \verb|PUT /users/<username>|\\ \hline
Mandatory fields & \verb|_id, _rev| (\verb|_rev| has to be obtained as in \ref{protocoldef:microservicesapi:database:getusers/username})\\ \hline
Optional fields & \verb|password, email, roles, enabled| (minimum one)\\ \hline
Field validation & \verb|_id :| Let CouchDB decide, as the entry is already present. \\
& \verb|_rev :| Let CouchDB decide, as the entry is already present. \\
& \verb|password :| \ref{protocoldef:inputvalidation:bcrypt} \\
& \verb|email :| \ref{protocoldef:inputvalidation:email} \\
& \verb|roles :| \ref{protocoldef:inputvalidation:roles} \\
& \verb|enabled :| boolean\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
User to Database-Service: Example content to edit user dl6pt setting new password
\begin{lstlisting}
{
"_id" : "dl6pt",
"_rev": "1-09352254509c9ddf86e80fd83868d557",
"password": "$2y$12$lqUueRVo94f439Tt7zqrZOHPfm6YoBzNawWLLIykF3nMip3L6mxLK"
}
\end{lstlisting}
Mapping to CouchDB with adding \verb|updated_*| information by database microservice:\\
\verb|PUT /users/<username>|
\begin{lstlisting}
{
"_id" : "dl6pt",
"_rev": "1-09352254509c9ddf86e80fd83868d557",
"password": "$2y$12$lqUueRVo94f439Tt7zqrZOHPfm6YoBzNawWLLIykF3nMip3L6mxLK",
"updated_on": "2018-07-08T11:50:02.168325Z",
"updated_by": <username from basic-auth>
}
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\colorbox{red}{Special treatment if field \texttt{roles} is present:}\\
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Edit the existing user <username>\\ \hline
\colorbox{red}{Permission} & \verb|user.change_role/<username>| \\ \hline
Mapping to CouchDB & \verb|PUT /users/<username>|\\ \hline
Mandatory fields & \verb|_id, _rev, roles| (\verb|_rev| has to be obtained as in \ref{protocoldef:microservicesapi:database:getusers/username}\\ \hline
Optional fields & \verb|password, email, roles, enabled| (minimum one)\\ \hline
Field validation & \verb|_id :| Let CouchDB decide, as the entry is already present. \\
& \verb|_rev :| Let CouchDB decide, as the entry is already present. \\
& \verb|password :| \ref{protocoldef:inputvalidation:bcrypt} \\
& \verb|email :| \ref{protocoldef:inputvalidation:email} \\
& \verb|roles :| \ref{protocoldef:inputvalidation:roles} \\
& \verb|enabled :| boolean\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
Same behavior as before.
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{PUT /users/<username>/avatar.jpg}
\label{protocoldef:microservicesapi:database:putusers/username/avatar.jpg}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Set the attachment called avatar.jpg for the given user \\ \hline
Permission & \verb|user.list| \\ \hline
Mapping to CouchDB & \verb|PUT /users/<username>/avatar.jpg|\\ \hline
Content in body & Image as raw bytes \\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
Transparent forwarding.
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{DELETE /users/<username>?rev=<rev>}
\label{protocoldef:microservicesapi:database:deleteusers}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Delete user <username>\\ \hline
Permission & \verb|user.delete/<username>| \\ \hline
Mapping to CouchDB & \verb|DELETE /users/<username>/avatar.jpg?rev=<rev>|\\ \hline
Mandatory fields & \verb|rev| as parameter (\verb|rev| has to be obtained as in \ref{protocoldef:microservicesapi:database:getusers/username})\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
Transparent forwarding.
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{DELETE /users/<username>/avatar.jpg?rev=<rev>}
\label{protocoldef:microservicesapi:database:deleteuser/avatar.jpg}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Delete the attachment called avatar.jpg for the given user\\ \hline
Permission & \verb|user.delete/<username>| \\ \hline
Mapping to CouchDB & \verb|DELETE /users/<username>?rev=<rev>|\\ \hline
Mandatory fields & \verb|rev| as parameter (\verb|rev| has to be obtained as in \ref{protocoldef:microservicesapi:database:getusers/username})\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
Transparent forwarding.
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\newpage
\subsubsection{GET /nodes}
\label{protocoldef:microservicesapi:database:getnodes}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Returns all users (depending on the filtering in \ref{protocoldef:filteringandpagination} in JSON format. \\ \hline
Permission & \verb|node.read| \\ \hline
Mapping to CouchDB & \verb|GET /users/_design/nodes/_view/byId?include_docs=true|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
\begin{lstlisting}
{
"total_rows": 2,
"offset": 0,
"rows": [
{
"_id": "db0sda-dc1",
"_rev": "1-cf7d2abfe193f476888be7108a0f548f",
"auth_key": "8PL9eJXccQ6X9Yq"
"coordinates": [34.123456, -23.123456],
"description": "some words about that node",
"hamcloud": true,
"created_on": "2018-07-03T08:00:52.786458Z",
"created_by": "dh3wr",
"changed_on": "2018-07-03T08:00:52.786458Z",
"changed_by": "dh3wr",
"owners": ["dl1abc","dh3wr","dl2ic"]
},
{
"_id": "db0sda-dc2",
"_rev": "1-ee070b17db9c3c58658d10fdedad2f48",
"auth_key": "73mxX4JLttzmVZ2"
"coordinates": [34.123456, -23.123456],
"description": "some words about that node",
"hamcloud": true,
"created_on": "2018-07-03T08:00:52.786458Z",
"created_by":"dh3wr",
"changed_on": "2018-07-03T08:00:52.786458Z",
"changed_by":"dh3wr",
"owners": ["dl1abc","dh3wr","dl2ic"]
}
]
}
\end{lstlisting}
\textbf{Auth response: \texttt{limited}:}\\
The output rows have to be checked, if the asking username is in the \texttt{owners} array.\\
If yes: return the complete row.\\
If not: return just the whitelisted fields:\\
\textit{Whitelist:} \_id, coordinates, description, hamcloud, owners\\
Example (here dh3wr is asking with limited permission):
\begin{lstlisting}
{
"total_rows": 2,
"offset": 0,
"rows": [
{
"_id": "db0sda-dc1",
"coordinates": [34.123456, -23.123456],
"description": "some words about that node",
"hamcloud": true,
"owners": ["dl1abc","dl2ic"]
},
{
"_id": "db0sda-dc2",
"_rev": "1-ee070b17db9c3c58658d10fdedad2f48",
"auth_key": "73mxX4JLttzmVZ2"
"coordinates": [34.123456, -23.123456],
"description": "some words about that node",
"hamcloud": true,
"created_on": "2018-07-03T08:00:52.786458Z",
"created_by":"dh3wr",
"changed_on": "2018-07-03T08:00:52.786458Z",
"changed_by":"dh3wr",
"owners": ["dl1abc","dh3wr","dl2ic"]
}
]
}
\end{lstlisting}
\textbf{Auth response: \texttt{false}:}\\
Send \verb|403 Forbidden|.
\newpage
\subsubsection{GET /nodes/<nodename>}
\label{protocoldef:microservicesapi:database:getnodes/nodename}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return details of <nodename> in JSON format. \\ \hline
Permission & \verb|node.read/<nodename>| \\ \hline
Mapping to CouchDB & \verb|GET /users/<nodename>|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
\begin{lstlisting}
{
"_id": "db0sda-dc2",
"_rev": "1-ee070b17db9c3c58658d10fdedad2f48",
"auth_key": "73mxX4JLttzmVZ2"
"coordinates": [34.123456, -23.123456],
"description": "some words about that node",
"hamcloud": true,
"created_on": "2018-07-03T08:00:52.786458Z",
"created_by":"dh3wr",
"changed_on": "2018-07-03T08:00:52.786458Z",
"changed_by":"dh3wr",
"owners": ["dl1abc","dh3wr","dl2ic"]
}
\end{lstlisting}
\textbf{Auth response: \texttt{limited}:}\\
The output has be checked, if the asking username is in the \texttt{owners} array.\\
If yes: return the complete output from CouchDB.\\
If not: return just the whitelisted fields:\\
\textit{Whitelist:} \_id, coordinates, description, hamcloud, owners\\
Example (here dh3wr is asking with limited permission):
\begin{lstlisting}
{
"_id": "db0sda-dc1",
"coordinates": [34.123456, -23.123456],
"description": "some words about that node",
"hamcloud": true,
"owners": ["dl1abc","dl2ic"]
}
\end{lstlisting}
\newpage
\subsubsection{GET /nodes/\_names}
\label{protocoldef:microservicesapi:database:getnodes/_names}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return just an JSON array of all nodes. Used where selections have to be done on the website. \\ \hline
Permission & \verb|nodes.list| \\ \hline
Mapping to CouchDB & \verb|GET /nodes/_design/nodes/_list/names/byId|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
\begin{lstlisting}
["db0sda-dc2","db0sda-dc3"]
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{GET /nodes/\_descriptions}
\label{protocoldef:microservicesapi:database:getnodes/_descriptions}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return just an JSON array of all nodenames and their description, sorted as a list. Used where descriptive selections have to be done on the website. \\ \hline
Permission & \verb|nodes.list| \\ \hline
Mapping to CouchDB & \verb|GET /nodes/_design/nodes/_list/descriptions/descriptions|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
\begin{lstlisting}
[
{
"_id": "db0sda-dc1",
"description": "some words about that node"
},
{
"_id": "db0sda-dc2",
"description": "some words about that node"
}
]
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\newpage
\subsubsection{PUT /nodes - Add new node}
\label{protocoldef:microservicesapi:database:putnodes/node_create}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Add a non-existing new node with \_id <nodename>\\ \hline
Permission & \verb|node.create| \\ \hline
Mapping to CouchDB & \verb|PUT /nodes/<nodesname>|\\ \hline
Mandatory fields & \verb|_id, auth_key, hamcloud, owners, description, coordinates| \\ \hline
Field validation & \verb|_id :| \ref{protocoldef:inputvalidation:name} \\
& \verb|auth_key :| \ref{protocoldef:inputvalidation:authkey} \\
& \verb|hamcloud :| boolean \\
& \verb|owners :| \ref{protocoldef:inputvalidation:owners} \\
& \verb|coordinates :| \ref{protocoldef:inputvalidation:coordinates}\\
& \verb|description :| \ref{protocoldef:inputvalidation:description}\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
User to Database-Service: Example content to add node db0sda-dc2
\begin{lstlisting}
{
"_id": "db0sda-dc2",
"auth_key": "73mxX4JLttzmVZ2"
"coordinates": [34.123456, -23.123456],
"description": "some words about that node",
"hamcloud": true,
"owners": ["dl1abc","dh3wr","dl2ic"]
}
\end{lstlisting}
Mapping to CouchDB with adding \verb|created_*| information by database microservice:\\
\begin{lstlisting}
{
"_id": "db0sda-dc2",
"auth_key": "73mxX4JLttzmVZ2"
"coordinates": [34.123456, -23.123456],
"description": "some words about that node",
"hamcloud": true,
"owners": ["dl1abc","dh3wr","dl2ic"],
"created_on": "2018-07-08T11:50:02.168325Z",
"created_by": <username from basic-auth>
}
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\newpage
\subsubsection{PUT /nodes - Edit existing node}
\label{protocoldef:microservicesapi:database:putnodes/node_update}
Edit is differentiated from create by the presence of the \colorbox{red}{\texttt{\_rev}} field.
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Edit the existing node <nodename>.\\ \hline
Permission & \verb|node.update/<nodename>| \\ \hline
Mapping to CouchDB & \verb|PUT /nodes/<nodename>|\\ \hline
Mandatory fields & \verb|_id, _rev| (\verb|_rev| has to be obtained as in \ref{protocoldef:microservicesapi:database:getnodes/nodename})\\ \hline
Optional fields & \verb|auth_key, hamcloud, owners, description, coordinates| (minimum one)\\ \hline
Field validation & \verb|_id :| Let CouchDB decide, as the entry is already present. \\
& \verb|_rev :| Let CouchDB decide, as the entry is already present. \\
& \verb|auth_key :| \ref{protocoldef:inputvalidation:authkey} \\
& \verb|hamcloud :| boolean \\
& \verb|owners :| \ref{protocoldef:inputvalidation:owners} \\
& \verb|coordinates :| \ref{protocoldef:inputvalidation:coordinates}\\
& \verb|description :| \ref{protocoldef:inputvalidation:description}\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
User to Database-Service: Example content to edit user dl6pt setting new password
\begin{lstlisting}
{
"_id": "db0sda-dc2",
"_rev": "1-ee070b17db9c3c58658d10fdedad2f48",
"auth_key": "73mxX4JLttzmVZ2"
}
\end{lstlisting}
Mapping to CouchDB with adding \verb|updated_*| information by database microservice:\\
\verb|PUT /users/<username>|
\begin{lstlisting}
{
"_id": "db0sda-dc2",
"_rev": "1-ee070b17db9c3c58658d10fdedad2f48",
"auth_key": "73mxX4JLttzmVZ2",
"updated_on": "2018-07-08T11:50:02.168325Z",
"updated_by": <username from basic-auth>
}
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{DELETE /nodes/<nodename>?rev=<rev>}
\label{protocoldef:microservicesapi:database:deletenode}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Delete node <nodename>\\ \hline
Permission & \verb|node.delete/<nodename>| \\ \hline
Mapping to CouchDB & \verb|DELETE /nodes/<nodename>?rev=1-093...|\\ \hline
Mandatory fields & \verb|rev| as parameter (\verb|rev| has to be obtained as in \ref{protocoldef:microservicesapi:database:getnodes/nodename})\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
Transparent forwarding.
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\todo{Maybe the transmitter service should inform the connected transmitters of the deleted node to do a switch-over?}
\newpage
\subsubsection{GET /rubrics}
\label{protocoldef:microservicesapi:database:rubrics}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Returns all rubrics (depending on the filtering in \ref{protocoldef:filteringandpagination} in JSON format. \\ \hline
Permission & \verb|rubric.read| \\ \hline
Mapping to CouchDB & \verb|GET /rubrics/_design/rubrics/_view/byId?include_docs=true|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
\begin{lstlisting}
{
"total_rows": 1,
"offset": 0,
"rows": [
{
"_id": "dx-kw",
"_rev": "1-166c3257894d0aea8ee68c1861ca508a",
"number": 4,
"description": "DX Cluster Spots KW",
"label": "DX KW",
"transmitter_groups": [
"dl-hh"
],
"transmitters": [
"db0abc"
],
"cyclic_transmit": false,
"cyclic_transmit_interval": 0,
"owner": [
"dh3wr",
"dl1abc"
]
}
]
}
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\newpage
\subsubsection{GET /rubrics/\_view/byNumber?startkey=<n>\&endkey=<m>}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Get the output as in section \ref{protocoldef:microservicesapi:database:rubrics}, but just for rubric numbers between <n> and <m>. \\ \hline
Permission & \verb|rubric.read| \\ \hline
Mapping to CouchDB & \verb|GET /rubrics/\_view/byNumber?startkey=<n>\&endkey=<m>| \\ \hline
Field validation & \verb|startkey :| \ref{protocoldef:inputvalidation:rubricnumber} \\
& \verb|endkey :| \ref{protocoldef:inputvalidation:rubricnumber} \\ \hline
\end{tabular}
\end{table}
Auth handling is the same as in section \ref{protocoldef:microservicesapi:database:rubrics}.
\subsubsection{GET /rubrics/\_view/byTransmitter?key=<transmittername>}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Get the output as in section \ref{protocoldef:microservicesapi:database:rubrics}, but just for rubrics that contain <transmittername> in the \verb|"transmitters"| array. \\ \hline
Permission & \verb|rubric.read| \\ \hline
Mapping to CouchDB & \verb|GET /rubrics/\_view/byTransmitter?key=<transmittername>| \\ \hline
\end{tabular}
\end{table}
Auth handling is the same as in section \ref{protocoldef:microservicesapi:database:rubrics}.
\subsubsection{GET /rubrics/\_view/byTransmitterGroup?key=<groupname>}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Get the output as in section \ref{protocoldef:microservicesapi:database:rubrics}, but just for rubrics that contains <groupname> in the \verb|"transmitter_groups"| array. \\ \hline
Permission & \verb|rubric.read| \\ \hline
Mapping to CouchDB & \verb|GET /rubrics/\_view/byTransmitterGroup?key=<groupname>| \\ \hline
\end{tabular}
\end{table}
Auth handling is the same as in section \ref{protocoldef:microservicesapi:database:rubrics}.
\subsubsection{GET /rubrics/\_view/withCyclicTransmit}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Get the output as in section \ref{protocoldef:microservicesapi:database:rubrics}, but just for rubric that have the cyclic transmit flag enabled. \\ \hline
Permission & \verb|rubric.read| \\ \hline
Mapping to CouchDB & \verb|GET /rubrics/\_view/withCyclicTransmit| \\ \hline
\end{tabular}
\end{table}
Auth handling is the same as in section \ref{protocoldef:microservicesapi:database:rubrics}.
\newpage
\subsubsection{GET /rubrics/<rubricname>}
\label{protocoldef:microservicesapi:database:getrubrics/rubricname}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return details of <rubricname> in JSON format. This does \textbf{not} include the content of the 10 rubric message slots. \\ \hline
Permission & \verb|rubric.read/<username>| \\ \hline
Mapping to CouchDB & \verb|GET /rubric/<username>| \\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}\\
\begin{lstlisting}
{
"_id": "dx-kw",
"_rev": "1-166c3257894d0aea8ee68c1861ca508a",
"number": 4,
"description": "DX Cluster Spots KW",
"label": "DX KW",
"transmitter_groups": [
"dl-hh"
],
"transmitters": [
"db0abc"
],
"cyclic_transmit": false,
"cyclic_transmit_interval": 0,
"owner": [
"dh3wr",
"dl1abc"
]
}
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{GET /rubrics/\_names}
\label{protocoldef:microservicesapi:database:getrubrics/_names}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return just an JSON array of all rubricnames. Used where selections have to be done on the website. \\ \hline
Permission & \verb|rubrics.list| \\ \hline
Mapping to CouchDB & \verb|GET /rubrics/_design/rubrics/_list/names/byId|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
\begin{lstlisting}
["dl-hh", "dl-nw"]
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\newpage
\subsubsection{GET /rubrics/\_descriptions}
\label{protocoldef:microservicesapi:database:getrubrics/_descriptions}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Return just an JSON array of all rubricnames their description in a JSON Array. Used where selections have to be done on the website. \\ \hline
Permission & \verb|rubrics.list| \\ \hline
Mapping to CouchDB & \verb|GET /rubrics/_design/rubrics/_list/descriptions/descriptions|\\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
\begin{lstlisting}
[
{
"_id": "dl-hh",
"description": "Germany, Hamburg"
},
{
"_id": "dl-by",
"description": "Bavaria"
}
]
\end{lstlisting}
\textbf{Auth response: \texttt{false} or \texttt{limited}:}\\
Send \verb|403 Forbidden|.
\subsubsection{PUT /rubrics - Add new rubric}
\label{protocoldef:microservicesapi:database:putrubrics/rubrics_create}
\begin{table}[htbp]
\begin{tabular}{|l|p{12cm}|} \hline
Item & Description \\ \hline \hline
Description & Add a non-existing new rubric with \_id <rubricname>\\ \hline
Permission & \verb|rubric.create| \\ \hline
Mapping to CouchDB & \verb|PUT /rubrics/<rubricsname>|\\ \hline
Mandatory fields & \verb|_id, number, description, label, transmitter_groups,| \\
& \verb|cyclic_transmit, cyclic_transmit_interval, owners| \\ \hline
Field validation & \verb|_id :| \ref{protocoldef:inputvalidation:name}| \\
& \verb|number :| \ref{protocoldef:inputvalidation:rubricnumber} \\
& \verb|description :| \ref{protocoldef:inputvalidation:description} \\
& \verb|label :| \ref{protocoldef:inputvalidation:rubriclabel} \\
& \verb|transmitter_groups :| \ref{protocoldef:inputvalidation:transmittergroup} \\
& \verb|cyclic_transmit :| boolean \\
& \verb|cyclic_transmit_interval :| \ref{protocoldef:inputvalidation:cyclictransmitinterval} \\
& \verb|owners :| \ref{protocoldef:inputvalidation:owners} \\ \hline
\end{tabular}
\end{table}
\textbf{Auth response: \texttt{true}:}
User to Database-Service: Example content to add rubric dx-kw
\begin{lstlisting}
{
"_id": "dx-kw",
"number": 4,
"description": "DX Cluster Spots KW",
"label": "DX KW",
"transmitter_groups": [
"dl-hh"
],
"transmitters": [
"db0abc"
],
"cyclic_transmit": false,
"cyclic_transmit_interval": 0,
"owners": [
"dh3wr",
"dl1abc"
]
}
\end{lstlisting}
Mapping to CouchDB with adding \verb|created_*| information by database microservice:\\
\begin{lstlisting}
{
"_id": "dx-kw",
"number": 4,
"description": "DX Cluster Spots KW",
"label": "DX KW",
"transmitter_groups": [
"dl-hh"
],
"transmitters": [
"db0abc"
],
"cyclic_transmit": false,
"cyclic_transmit_interval": 0,