about summary refs log tree commit diff stats
path: root/src/ui/confwin.c
blob: 6c8b98c783053dc842cc598d360f4efc2fcd0c3f (plain) (blame)
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
/*
 * confwin.c
 * vim: expandtab:ts=4:sts=4:sw=4
 *
 * Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
 *
 * This file is part of Profanity.
 *
 * Profanity is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Profanity is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Profanity.  If not, see <https://www.gnu.org/licenses/>.
 *
 * In addition, as a special exception, the copyright holders give permission to
 * link the code of portions of this program with the OpenSSL library under
 * certain conditions as described in each individual source file, and
 * distribute linked combinations including the two.
 *
 * You must obey the GNU General Public License in all respects for all of the
 * code used other than OpenSSL. If you modify file(s) with this exception, you
 * may extend this exception to your version of the file(s), but you are not
 * obligated to do so. If you do not wish to do so, delete this exception
 * statement from your version. If you delete this exception statement from all
 * source files in the program, then also delete it here.
 *
 */

#include "config.h"

#include <assert.h>
#include <stdlib.h>

#include "ui/ui.h"
#include "ui/window.h"
#include "ui/win_types.h"
#include "ui/window_list.h"

static void _confwin_form_field(ProfWin* window, char* tag, FormField* field);

void
confwin_show_form(ProfConfWin* confwin)
{
    ProfWin* window = (ProfWin*)confwin;
    if (confwin->form->title) {
        win_print(window, THEME_DEFAULT, "-", "Form title: ");
        win_appendln(window, THEME_DEFAULT, "%s", confwin->form->title);
    } else {
        win_println(window, THEME_DEFAULT, "-", "Configuration for room %s.", confwin->roomjid);
    }
    win_println(window, THEME_DEFAULT, "-", "");

    confwin_form_help(confwin);

    GSList* fields = confwin->form->fields;
    GSList* curr_field = fields;
    while (curr_field) {
        FormField* field = curr_field->data;

        if ((g_strcmp0(field->type, "fixed") == 0) && field->values) {
            if (field->values) {
                char* value = field->values->data;
                win_println(window, THEME_DEFAULT, "-", "%s", value);
            }
        } else if (g_strcmp0(field->type, "hidden") != 0 && field->var) {
            char* tag = g_hash_table_lookup(confwin->form->var_to_tag, field->var);
            _confwin_form_field(window, tag, field);
        }

        curr_field = g_slist_next(curr_field);
    }
}

void
confwin_show_form_field(ProfConfWin* confwin, DataForm* form, char* tag)
{
    assert(confwin != NULL);

    FormField* field = form_get_field_by_tag(form, tag);
    ProfWin* window = (ProfWin*)confwin;
    _confwin_form_field(window, tag, field);
    win_println(window, THEME_DEFAULT, "-", "");
}

void
confwin_handle_configuration(ProfConfWin* confwin, DataForm* form)
{
    assert(confwin != NULL);

    ProfWin* window = (ProfWin*)confwin;
    ui_focus_win(window);

    confwin_show_form(confwin);

    win_println(window, THEME_DEFAULT, "-", "");
    if (confwin->submit != NULL) {
        win_println(window, THEME_DEFAULT, "-", "Use '/form submit' to save changes.");
    }
    win_println(window, THEME_DEFAULT, "-", "Use '/form cancel' to cancel changes.");
    win_println(window, THEME_DEFAULT, "-", "See '/form help' for more information.");
    win_println(window, THEME_DEFAULT, "-", "");
}

void
confwin_field_help(ProfConfWin* confwin, char* tag)
{
    assert(confwin != NULL);

    ProfWin* window = (ProfWin*)confwin;
    FormField* field = form_get_field_by_tag(confwin->form, tag);
    if (field) {
        win_print(window, THEME_DEFAULT, "-", "%s", field->label);
        if (field->required) {
            win_appendln(window, THEME_DEFAULT, " (Required):");
        } else {
            win_appendln(window, THEME_DEFAULT, ":");
        }
        if (field->description) {
            win_println(window, THEME_DEFAULT, "-", "  Description : %s", field->description);
        }
        win_println(window, THEME_DEFAULT, "-", "  Type        : %s", field->type);

        int num_values = 0;
        GSList* curr_option = NULL;
        FormOption* option = NULL;

        switch (field->type_t) {
        case FIELD_TEXT_SINGLE:
        case FIELD_TEXT_PRIVATE:
            win_println(window, THEME_DEFAULT, "-", "  Set         : /%s <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Where       : <value> is any text");
            break;
        case FIELD_TEXT_MULTI:
            num_values = form_get_value_count(confwin->form, tag);
            win_println(window, THEME_DEFAULT, "-", "  Add         : /%s add <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Where       : <value> is any text");
            if (num_values > 0) {
                win_println(window, THEME_DEFAULT, "-", "  Remove      : /%s remove <value>", tag);
                win_println(window, THEME_DEFAULT, "-", "  Where       : <value> between 'val1' and 'val%d'", num_values);
            }
            break;
        case FIELD_BOOLEAN:
            win_println(window, THEME_DEFAULT, "-", "  Set         : /%s <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Where       : <value> is either 'on' or 'off'");
            break;
        case FIELD_LIST_SINGLE:
            win_println(window, THEME_DEFAULT, "-", "  Set         : /%s <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Where       : <value> is one of");
            curr_option = field->options;
            while (curr_option) {
                option = curr_option->data;
                win_println(window, THEME_DEFAULT, "-", "                  %s", option->value);
                curr_option = g_slist_next(curr_option);
            }
            break;
        case FIELD_LIST_MULTI:
            win_println(window, THEME_DEFAULT, "-", "  Add         : /%s add <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Remove      : /%s remove <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Where       : <value> is one of");
            curr_option = field->options;
            while (curr_option) {
                option = curr_option->data;
                win_println(window, THEME_DEFAULT, "-", "                  %s", option->value);
                curr_option = g_slist_next(curr_option);
            }
            break;
        case FIELD_JID_SINGLE:
            win_println(window, THEME_DEFAULT, "-", "  Set         : /%s <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Where       : <value> is a valid Jabber ID");
            break;
        case FIELD_JID_MULTI:
            win_println(window, THEME_DEFAULT, "-", "  Add         : /%s add <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Remove      : /%s remove <value>", tag);
            win_println(window, THEME_DEFAULT, "-", "  Where       : <value> is a valid Jabber ID");
            break;
        case FIELD_FIXED:
        case FIELD_UNKNOWN:
        case FIELD_HIDDEN:
        default:
            break;
        }
    } else {
        win_println(window, THEME_DEFAULT, "-", "No such field %s", tag);
    }
}

void
confwin_form_help(ProfConfWin* confwin)
{
    assert(confwin != NULL);

    if (confwin->form->instructions) {
        ProfWin* window = (ProfWin*)confwin;
        win_println(window, THEME_DEFAULT, "-", "Supplied instructions:");
        win_println(window, THEME_DEFAULT, "-", "%s", confwin->form->instructions);
        win_println(window, THEME_DEFAULT, "-", "");
    }
}

static void
_confwin_form_field(ProfWin* window, char* tag, FormField* field)
{
    win_print(window, THEME_AWAY, "-", "[%s] ", tag);
    win_append(window, THEME_DEFAULT, "%s", field->label);
    if (field->required) {
        win_append(window, THEME_DEFAULT, " (required): ");
    } else {
        win_append(window, THEME_DEFAULT, ": ");
    }

    GSList* values = field->values;
    GSList* curr_value = values;

    switch (field->type_t) {
    case FIELD_HIDDEN:
        break;
    case FIELD_TEXT_SINGLE:
        if (curr_value) {
            char* value = curr_value->data;
            if (value) {
                if (g_strcmp0(field->var, "muc#roomconfig_roomsecret") == 0) {
                    win_append(window, THEME_ONLINE, "[hidden]");
                } else {
                    win_append(window, THEME_ONLINE, "%s", value);
                }
            }
        }
        win_newline(window);
        break;
    case FIELD_TEXT_PRIVATE:
        if (curr_value) {
            char* value = curr_value->data;
            if (value) {
                win_append(window, THEME_ONLINE, "[hidden]");
            }
        }
        win_newline(window);
        break;
    case FIELD_TEXT_MULTI:
        win_newline(window);
        int index = 1;
        while (curr_value) {
            char* value = curr_value->data;
            GString* val_tag = g_string_new("");
            g_string_printf(val_tag, "val%d", index++);
            win_println(window, THEME_ONLINE, "-", "  [%s] %s", val_tag->str, value);
            g_string_free(val_tag, TRUE);
            curr_value = g_slist_next(curr_value);
        }
        break;
    case FIELD_BOOLEAN:
        if (curr_value == NULL) {
            win_appendln(window, THEME_OFFLINE, "FALSE");
        } else {
            char* value = curr_value->data;
            if (value == NULL) {
                win_appendln(window, THEME_OFFLINE, "FALSE");
            } else {
                if (g_strcmp0(value, "0") == 0 || g_strcmp0(value, "false") == 0) {
                    win_appendln(window, THEME_OFFLINE, "FALSE");
                } else {
                    win_appendln(window, THEME_ONLINE, "TRUE");
                }
            }
        }
        break;
    case FIELD_LIST_SINGLE:
        if (curr_value) {
            win_newline(window);
            char* value = curr_value->data;
            GSList* options = field->options;
            GSList* curr_option = options;
            while (curr_option) {
                FormOption* option = curr_option->data;
                if (g_strcmp0(option->value, value) == 0) {
                    win_println(window, THEME_ONLINE, "-", "  [%s] %s", option->value, option->label);
                } else {
                    win_println(window, THEME_OFFLINE, "-", "  [%s] %s", option->value, option->label);
                }
                curr_option = g_slist_next(curr_option);
            }
        }
        break;
    case FIELD_LIST_MULTI:
        if (curr_value) {
            win_newline(window);
            GSList* options = field->options;
            GSList* curr_option = options;
            while (curr_option) {
                FormOption* option = curr_option->data;
                if (g_slist_find_custom(curr_value, option->value, (GCompareFunc)g_strcmp0)) {
                    win_println(window, THEME_ONLINE, "-", "  [%s] %s", option->value, option->label);
                } else {
                    win_println(window, THEME_OFFLINE, "-", "  [%s] %s", option->value, option->label);
                }
                curr_option = g_slist_next(curr_option);
            }
        }
        break;
    case FIELD_JID_SINGLE:
        if (curr_value) {
            char* value = curr_value->data;
            if (value) {
                win_append(window, THEME_ONLINE, "%s", value);
            }
        }
        win_newline(window);
        break;
    case FIELD_JID_MULTI:
        win_newline(window);
        while (curr_value) {
            char* value = curr_value->data;
            win_println(window, THEME_ONLINE, "-", "  %s", value);
            curr_value = g_slist_next(curr_value);
        }
        break;
    case FIELD_FIXED:
        if (curr_value) {
            char* value = curr_value->data;
            if (value) {
                win_append(window, THEME_DEFAULT, "%s", value);
            }
        }
        win_newline(window);
        break;
    default:
        break;
    }
}

char*
confwin_get_string(ProfConfWin* confwin)
{
    assert(confwin != NULL);

    GString* res = g_string_new("");

    char* title = win_get_title((ProfWin*)confwin);
    g_string_append(res, title);
    free(title);

    char* resstr = res->str;
    g_string_free(res, FALSE);

    return resstr;
}