]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/js/main.js
Pass through the data to tell the client if it has room aide privileges and/or permis...
[citadel.git] / webcit-ng / static / js / main.js
1 // Copyright (c) 2016-2022 by the citadel.org team
2 //
3 // This program is open source software.  Use, duplication, or
4 // disclosure are subject to the GNU General Public License v3.
5
6
7 // This is called at the very beginning of the main page load.
8 ctdl_startup = async() => {
9         response = await fetch("/ctdl/c/info");
10
11         if (response.ok) {
12                 serv_info = await(response.json());
13                 if (serv_info.serv_rev_level < 905) {
14                         alert(_("Citadel server is too old, some functions may not work"));
15                 }
16
17                 update_banner();
18
19                 // What do we do upon landing?
20
21                 if ( (serv_info.serv_supports_guest) || (logged_in) ) {                 // If the Lobby is visible,
22                         gotonext(1);                                                    // go there.
23                 }
24                 else {                                                                  // Otherwise,
25                         display_login_screen("");                                       // display the login modal.
26                 }
27         }
28         else {
29                 document.getElementById("ctdl-main").innerHTML =
30                         "<div class=\"w3-panel w3-red\"><p>"
31                         + _("This program was unable to connect or stay connected to the Citadel server.  Please report this problem to your system administrator.")
32                         + "</div>";
33         }
34 }
35
36
37 // Display a room list in the main div.
38
39 // Update the "banner" div with all relevant info.
40 function update_banner() {
41         detect_logged_in();
42         if (current_room) {
43                 document.getElementById("ctdl_banner_title").innerHTML = current_room;
44                 if (is_room_aide) {
45                         document.getElementById("ctdl_banner_title").innerHTML += "<i class=\"fa fa-user-cog\"></i>";
46                 }
47                 document.title = current_room;
48         }
49         else {
50                 document.getElementById("ctdl_banner_title").innerHTML = serv_info.serv_humannode;
51         }
52         document.getElementById("current_user").innerHTML = current_user ;
53         if (logged_in) {
54                 document.getElementById("lilo").innerHTML = "<a href=\"/ctdl/a/logout\"><i class=\"fa fa-right-from-bracket\"></i>" + _("Log off") + "</a>" ;
55         }
56         else {
57                 document.getElementById("lilo").innerHTML = "<a href=\"javascript:display_login_screen('')\"><i class=\"fa fa-right-to-bracket\"></i>" + _("Log in") + "</a>" ;
58         }
59 }
60
61
62 // goto room
63 function gotoroom(roomname) {
64
65         fetch_room = async() => {
66                 response = await fetch("/ctdl/r/" + escapeHTMLURI(roomname) + "/");
67                 if (response.ok) {
68                         data = await(response.json());
69                         current_room = data.name;
70                         new_messages = data.new_messages;
71                         total_messages = data.total_messages;
72                         current_view = data.current_view;
73                         default_view = data.default_view;
74                         last_seen = data.last_seen;
75                         is_room_aide = data.is_room_aide;
76                         can_delete_messages = data.can_delete_messages;
77                         update_banner();
78                         render_room_view(0, 9999999999);
79                 }
80         }
81         fetch_room();
82 }
83
84
85 // Goto next room with unread messages
86 // which_oper is 0=ungoto, 1=skip, 2=goto
87 function gotonext(which_oper) {
88         if (which_oper == 2) {                                  // Goto needs to mark messages as seen
89
90                 set_last_read_pointer = async() => {
91                         response = await fetch("/ctdl/r/" + escapeHTMLURI(current_room) + "/slrp?last=" + last_seen);
92                 }
93                 set_last_read_pointer();
94         }
95
96         if ((which_oper == 1) || (which_oper == 2)) {           // Skip or Goto both take us to the "next" room
97                 if (march_list.length == 0) {
98                         load_new_march_list(which_oper);        // we will recurse back here
99                 }
100                 else {
101                         next_room = march_list[0].name;
102                         march_list.splice(0, 1);
103                         gotoroom(next_room);
104                 }
105         }
106
107         // FIXME implement mode 0 (ungoto)
108
109 }
110
111
112 // Called by gotonext() when the march list is empty.
113 function load_new_march_list(which_oper) {
114         fetchm = async() => {
115                 response = await fetch("/ctdl/r/");
116                 march_list = await(response.json());
117                 if (response.ok) {
118                         march_list = march_list.filter(function(room) {
119                                 return room.hasnewmsgs;
120                         });
121                         march_list = march_list.sort(function(a,b) {
122                                 if (a.floor != b.floor) {
123                                         return(a.floor - b.floor);
124                                 }
125                                 if (a.rorder != b.rorder) {
126                                         return(a.rorder - b.rorder);
127                                 }
128                                 return(a.name < b.name);
129                         });
130
131                         // If there are still no rooms with new messages, go to the Lobby.
132                         if (march_list.length == 0) {
133                                 march_list.push({name:"_BASEROOM_",known:true,hasnewmsgs:true,floor:0});
134                         }
135
136                         gotonext(which_oper);
137                 }
138         }
139         fetchm();
140 }
141
142
143 // Activate the "Loading..." modal
144 function activate_loading_modal() {
145         document.getElementById("ctdl_big_modal").innerHTML =
146                   "<div class=\"w3-modal-content\">"
147                 + "  <div class=\"w3-container\">"
148
149                 + "<i class=\"fas fa-spinner fa-spin\"></i>&nbsp;&nbsp;"
150                 + _("Loading messages from server, please wait")
151
152                 + "  </div>"
153                 + "</div>";
154         document.getElementById("ctdl_big_modal").style.display = "block";
155 }
156
157
158 // Disappear the "Loading..." modal
159 function deactivate_loading_modal() {
160         document.getElementById("ctdl_big_modal").style.display = "none";
161 }