|
1 | 1 | @startuml
|
2 | 2 | left to right direction
|
3 | 3 |
|
4 |
| -object source.MoodleAssignment { |
| 4 | +namespace execution { |
| 5 | +class MoodleAssignment { |
5 | 6 | name: string
|
6 | 7 | deadline: date
|
7 | 8 | url: string
|
8 | 9 | }
|
9 | 10 |
|
10 |
| -map source.Moodle { |
| 11 | +map rootNode.Moodle { |
11 | 12 | url => my.moodle.com
|
12 | 13 | username => student
|
13 |
| - MoodleAssignment *-> MoodleAssignment |
14 | 14 | }
|
| 15 | +note top of rootNode.Moodle : NodePosition.START |
15 | 16 |
|
16 |
| -object target.TodoistTask { |
17 |
| - title: string |
18 |
| - description: string |
19 |
| - deadline: date |
20 |
| -} |
21 |
| -map target.Todolist { |
22 |
| - username => myuser |
23 |
| - <<apiKey>> => ... |
24 |
| - TodoistTask *-> TodoistTask |
25 |
| -} |
26 |
| - |
27 |
| - |
28 |
| -object target.NtfyNotification { |
| 17 | +class flow.NtfyNotification { |
29 | 18 | urgency: number
|
30 | 19 | header: string
|
31 | 20 | content: string
|
32 | 21 | }
|
33 | 22 |
|
34 |
| -map target.Ntfy { |
35 |
| - url => ntfy.sh |
36 |
| - topic => mytopic |
37 |
| - NtfyNotification *-> NtfyNotification |
| 23 | +map flow.NotificationMapper { |
| 24 | + urgency => normal |
| 25 | + header => {{name}} |
| 26 | + content => A new assignment was published. |
38 | 27 | }
|
39 | 28 |
|
40 |
| -map flow.AssignmentNotification { |
41 |
| - urgency => normal |
42 |
| - title => {{name}} |
43 |
| - description => A new assignment was published. |
| 29 | +map flow.Ntfy { |
| 30 | + url => ntfy.sh |
| 31 | + topic => mytopic |
44 | 32 | }
|
45 | 33 |
|
46 |
| -source.MoodleAssignment --> flow.AssignmentNotification |
47 |
| -flow.AssignmentNotification --> target.NtfyNotification |
| 34 | +rootNode.Moodle --> flow.NotificationMapper |
| 35 | +(rootNode.Moodle, flow.NotificationMapper) .. MoodleAssignment |
| 36 | +flow.NotificationMapper --> flow.Ntfy |
| 37 | +(flow.NotificationMapper, flow.Ntfy) .. flow.NtfyNotification |
48 | 38 |
|
49 |
| -map flow.AssignmentTask { |
| 39 | +map flow.TaskMapper { |
50 | 40 | title => {{name}}
|
51 | 41 | description => {{url}}
|
52 | 42 | <deadline> => {{deadline}
|
53 | 43 | }
|
54 | 44 |
|
55 |
| -source.MoodleAssignment --> flow.AssignmentTask |
56 |
| -flow.AssignmentTask --> target.TodoistTask |
| 45 | +class flow.TodoistTask { |
| 46 | + title: string |
| 47 | + description: string |
| 48 | + deadline: date |
| 49 | +} |
57 | 50 |
|
58 |
| -note right of flow.AssignmentTask : The fields are taken from the target. They are either\nhardcoded or templated from the source entity. |
| 51 | +map flow.Todoist { |
| 52 | + username => myuser |
| 53 | + <<apiKey>> => ... |
| 54 | +} |
| 55 | + |
| 56 | +rootNode.Moodle --> flow.TaskMapper |
| 57 | +(rootNode.Moodle, flow.TaskMapper) .. MoodleAssignment |
| 58 | +flow.TaskMapper --> flow.Todoist |
| 59 | +(flow.TaskMapper, flow.Todoist) .. flow.TodoistTask |
| 60 | + |
| 61 | +note right of flow.TaskMapper : The fields are taken from the target. They are either\nhardcoded or templated from the source entity. |
| 62 | +} |
59 | 63 |
|
60 | 64 | legend
|
61 | 65 | <field> = hidden by default, shown in advanced mode
|
62 |
| -<<field>> = not supposed to be shown to the user |
63 |
| -{{template}} = template (for ex. jekyll) |
| 66 | +{{template}} = template (e.g. jekyll) |
64 | 67 | end legend
|
65 | 68 |
|
66 | 69 | @enduml
|
0 commit comments