src/action_list_graphs.c: Add a simple search box.
[collection4.git] / src / action_list_graphs.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <errno.h>
5
6 #include "action_list_graphs.h"
7 #include "graph.h"
8 #include "graph_ident.h"
9 #include "graph_list.h"
10 #include "utils_params.h"
11
12 #include <fcgiapp.h>
13 #include <fcgi_stdio.h>
14
15 static int print_graph_inst_json (__attribute__((unused)) graph_config_t *cfg, /* {{{ */
16     graph_instance_t *inst,
17     void *user_data)
18 {
19   _Bool *first;
20   graph_ident_t *ident;
21   char *json;
22
23   first = user_data;
24
25   ident = inst_get_selector (inst);
26   if (ident == NULL)
27     return (-1);
28
29   json = ident_to_json (ident);
30   if (json == NULL)
31   {
32     ident_destroy (ident);
33     return (ENOMEM);
34   }
35
36   if (*first)
37     printf ("%s", json);
38   else
39     printf (",\n%s", json);
40
41   *first = 0;
42
43   ident_destroy (ident);
44   return (0);
45 } /* }}} int print_graph_inst_json */
46
47 static int print_graph_json (graph_config_t *cfg, /* {{{ */
48     void *user_data)
49 {
50   return (gl_graph_instance_get_all (cfg, print_graph_inst_json, user_data));
51 } /* }}} int print_graph_json */
52
53 static int list_graphs_json (void) /* {{{ */
54 {
55   _Bool first = 1;
56
57   printf ("Content-Type: application/json\n\n");
58
59   printf ("[\n");
60   gl_graph_get_all (print_graph_json, /* user_data = */ &first);
61   printf ("\n]");
62
63   return (0);
64 } /* }}} int list_graphs_json */
65
66 struct callback_data_s
67 {
68   graph_config_t *cfg;
69 };
70 typedef struct callback_data_s callback_data_t;
71
72 static int print_graph_inst_html (graph_config_t *cfg, /* {{{ */
73     graph_instance_t *inst,
74     void *user_data)
75 {
76   callback_data_t *data = user_data;
77   char params[1024];
78   char desc[1024];
79
80   if (data->cfg != cfg)
81   {
82     if (data->cfg != NULL)
83       printf ("  </ul></li>\n");
84
85     memset (desc, 0, sizeof (desc));
86     graph_get_title (cfg, desc, sizeof (desc));
87
88     printf ("  <li>%s\n  <ul>\n", desc);
89
90     data->cfg = cfg;
91   }
92
93   memset (params, 0, sizeof (params));
94   inst_get_params (cfg, inst, params, sizeof (params));
95
96   memset (desc, 0, sizeof (desc));
97   inst_describe (cfg, inst, desc, sizeof (desc));
98
99   printf ("    <li><a href=\"%s?action=graph;%s\">%s</a></li>\n",
100       script_name (), params, desc);
101
102   return (0);
103 } /* }}} int print_graph_inst_html */
104
105 static int list_graphs_html (const char *term) /* {{{ */
106 {
107   callback_data_t data = { NULL };
108   printf ("Content-Type: text/html\n\n");
109
110   printf ("<html>\n  <head>\n");
111   if (term != NULL)
112     printf ("    <title>c4: Graphs matching &quot;%s&quot;</title>\n", term);
113   else
114     printf ("    <title>c4: List of all graphs</title>\n");
115   printf ("  </head>\n  <body>\n");
116
117   printf ("<form action=\"%s\" method=\"get\">\n"
118       "  <input type=\"hidden\" name=\"action\" value=\"list_graphs\" />\n"
119       "  <input type=\"text\" name=\"search\" value=\"%s\" />\n"
120       "  <input type=\"submit\" name=\"button\" value=\"Search\" />\n"
121       "</form>\n",
122       script_name (), (term != NULL) ? term : "");
123
124   printf ("    <ul>\n");
125   if (term == NULL)
126     gl_instance_get_all (print_graph_inst_html, /* user_data = */ &data);
127   else
128     gl_search (term, print_graph_inst_html, /* user_data = */ &data);
129
130   if (data.cfg != NULL)
131     printf ("      </ul></li>\n");
132
133   printf ("    </ul>\n");
134
135   printf ("  </body>\n</html>\n");
136
137   return (0);
138 } /* }}} int list_graphs_html */
139
140 int action_list_graphs (void) /* {{{ */
141 {
142   const char *format;
143
144   gl_update ();
145
146   format = param ("format");
147   if (format == NULL)
148     format = "html";
149
150   if (strcmp ("json", format) == 0)
151     return (list_graphs_json ());
152   else
153     return (list_graphs_html (param ("search")));
154 } /* }}} int action_list_graphs */
155
156 /* vim: set sw=2 sts=2 et fdm=marker : */