]> saetta.ns0.it Git - bcity/fe/commitdiff
Draft of ticket saving.
authorAndrea Zagli <azagli@libero.it>
Sat, 30 Jan 2016 12:18:14 +0000 (13:18 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 30 Jan 2016 12:18:14 +0000 (13:18 +0100)
data/bcity_fe/ctpl/Makefile.am
data/bcity_fe/ctpl/index_category.ctpl [new file with mode: 0644]
data/bcity_fe/ctpl/index_index.ctpl
data/bcity_fe/ctpl/index_save.ctpl [new file with mode: 0644]
doc/bcity_fe/db/bcity_fe.sql
src/index.c
src/index.h
src/main.c

index 36e45980c32cb27e41ffea07c330d1f1ce99e9f6..7b71168249bd00193932c8d3a9c5d69e237d01c8 100644 (file)
@@ -3,6 +3,8 @@ ctpldir = $(datadir)/$(PACKAGE)/ctpl
 ctpl_DATA = \
             template.ctpl \
             index_index.ctpl \
+            index_category.ctpl \
+            index_save.ctpl \
             login_index.ctpl
 
 EXTRA_DIST =
diff --git a/data/bcity_fe/ctpl/index_category.ctpl b/data/bcity_fe/ctpl/index_category.ctpl
new file mode 100644 (file)
index 0000000..9b38d85
--- /dev/null
@@ -0,0 +1,7 @@
+<h1>B-City</h1>
+
+<h2>Selezionare la categoria della segnalazione</h2>
+
+<form action="/bcity/bcity_fe/index/save" method="post">
+       <button name="submit" id="submit" class="btn btn-lg btn-primary btn-block" type="submit">Conferma</button>
+</form>
\ No newline at end of file
index afa0f4ad64b222fc349cb551188c4d93c57b84a8..6a7fbf7f6ce6ab47a76521dc1892cd614ab6a479 100644 (file)
@@ -2,7 +2,8 @@
 
 <div id="map" style="width: 100%; height: 600px;"></div>
 
-<form>
+<form action="/bcity/bcity_fe/index/category" method="post">
        <input name="lat" id="lat" />
        <input name="lng" id="lng" />
+       <button name="submit" id="submit" class="btn btn-lg btn-primary btn-block" type="submit">Conferma</button>
 </form>
\ No newline at end of file
diff --git a/data/bcity_fe/ctpl/index_save.ctpl b/data/bcity_fe/ctpl/index_save.ctpl
new file mode 100644 (file)
index 0000000..0b0655b
--- /dev/null
@@ -0,0 +1,7 @@
+<h1>B-City</h1>
+
+<h2>La segnalazione inserita รจ stata salvata correttamente e inviata all'ufficio competente</h2>
+
+<form action="/bcity/bcity_fe/index/index" method="post">
+       <button name="submit" id="submit" class="btn btn-lg btn-primary btn-block" type="submit">Conferma</button>
+</form>
\ No newline at end of file
index 3fa46c1b89f35b6e9ea46bc830235385e1a459e2..bf14ecbdca0482261b221a9ecb9d1e7e84cf02bb 100644 (file)
@@ -13,6 +13,30 @@ SET check_function_bodies = false;
 SET client_min_messages = warning;
 SET row_security = off;
 
+SET search_path = public, pg_catalog;
+
+SET default_with_oids = false;
+
+--
+-- Name: segnalazioni; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE segnalazioni (
+    id integer NOT NULL,
+    utente character varying(255) DEFAULT ''::character varying,
+    latitudine double precision,
+    longitudine double precision
+);
+
+
+--
+-- Name: segnalazioni_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY segnalazioni
+    ADD CONSTRAINT segnalazioni_pkey PRIMARY KEY (id);
+
+
 --
 -- PostgreSQL database dump complete
 --
index 16ebd0178ba5e191776412f276deea74865a0cf0..75f48345fed86f1c564416eaba151b087a1fa3b8 100644 (file)
@@ -105,3 +105,101 @@ index_index (GMatchInfo *minfo, gpointer user_data)
        g_free (head);
        g_free (content);
 }
+
+void
+index_category (GMatchInfo *minfo, gpointer user_data)
+{
+       CtplEnviron *env;
+
+       gchar *filename;
+       gchar *content;
+
+       Commons *commons = (Commons *)user_data;
+
+       if (!get_is_logged (commons))
+               {
+                       zak_cgi_main_redirect (commons->zcgi_main, "/bcity/bcity_fe/login/index");
+                       return;
+               }
+
+       if (zak_cgi_main_is_post (commons->zcgi_main))
+               {
+                       zak_cgi_session_set_value (commons->zcgi_session, "latitudine", g_value_get_string (zak_cgi_main_get_stdin_field (commons->zcgi_main, "lat")));
+                       zak_cgi_session_set_value (commons->zcgi_session, "longitudine", g_value_get_string (zak_cgi_main_get_stdin_field (commons->zcgi_main, "lng")));
+
+                       filename = g_build_filename (commons->ctpldir, "index_category.ctpl", NULL);
+                       content = get_ctpl_filled (filename, NULL);
+                       g_free (filename);
+
+                       env = ctpl_environ_new ();
+                       ctpl_environ_push_string (env, "head", "");
+                       ctpl_environ_push_string (env, "body_tag", "");
+                       ctpl_environ_push_string (env, "body", content);
+
+                       filename = g_build_filename (commons->ctpldir, "template.ctpl", NULL);
+                       g_string_printf (commons->out, "%s",
+                                                        get_ctpl_filled (filename, env));
+                       g_free (filename);
+
+                       g_free (content);
+               }
+       else
+               {
+                       zak_cgi_main_redirect (commons->zcgi_main, "/bcity/bcity_fe/index/index");
+               }
+}
+
+void
+index_save (GMatchInfo *minfo, gpointer user_data)
+{
+       CtplEnviron *env;
+
+       gchar *filename;
+       gchar *content;
+
+       Commons *commons = (Commons *)user_data;
+
+       if (!get_is_logged (commons))
+               {
+                       zak_cgi_main_redirect (commons->zcgi_main, "/bcity/bcity_fe/login/index");
+                       return;
+               }
+
+       if (zak_cgi_main_is_post (commons->zcgi_main))
+               {
+                       guint newid;
+                       gchar *sql;
+
+                       newid = gdaex_get_new_id(commons->gdaex, "segnalazioni", "id", NULL);
+
+                       sql = g_strdup_printf ("INSERT INTO segnalazioni"
+                                                                  " (id, utente, latitudine, longitudine)"
+                                                                  " VALUES (%d, '%s', %s, %s)",
+                                                                  newid,
+                                                                  zak_cgi_session_get_value (commons->zcgi_session, "username"),
+                                                                  zak_cgi_session_get_value (commons->zcgi_session, "latitudine"),
+                                                                  zak_cgi_session_get_value (commons->zcgi_session, "longitudine"));
+                       gdaex_execute (commons->gdaex, sql);
+                       g_free (sql);
+
+                       filename = g_build_filename (commons->ctpldir, "index_save.ctpl", NULL);
+                       content = get_ctpl_filled (filename, NULL);
+                       g_free (filename);
+
+                       env = ctpl_environ_new ();
+                       ctpl_environ_push_string (env, "head", "");
+                       ctpl_environ_push_string (env, "body_tag", "");
+                       ctpl_environ_push_string (env, "body", content);
+
+                       filename = g_build_filename (commons->ctpldir, "template.ctpl", NULL);
+                       g_string_printf (commons->out, "%s",
+                                                        get_ctpl_filled (filename, env));
+                       g_free (filename);
+
+                       g_free (content);
+               }
+       else
+               {
+                       zak_cgi_main_redirect (commons->zcgi_main, "/bcity/bcity_fe/index/index");
+               }
+}
index 07c7cb6941b3717739e75a4ea1d1223eff602efa..e37235e0855d52cd6397483b875807b8b4ae986b 100644 (file)
@@ -28,6 +28,8 @@
 
 
 void index_index (GMatchInfo *minfo, gpointer user_data);
+void index_category (GMatchInfo *minfo, gpointer user_data);
+void index_save (GMatchInfo *minfo, gpointer user_data);
 
 
 #endif /* __INDEX_H__ */
index acc2f2910239c21045d261c4cccb1c83531afcf8..d0bc0dd9a2591d31c8339b5ede93096925860b3f 100644 (file)
@@ -96,6 +96,8 @@ main (int argc, char *argv[])
        zak_cgi_url_connect (zcgi_url, "/", (ZakCgiUrlConnectedFunction)index_index, commons);
        zak_cgi_url_connect (zcgi_url, "/index[/]?", (ZakCgiUrlConnectedFunction)index_index, commons);
        zak_cgi_url_connect (zcgi_url, "/index/index", (ZakCgiUrlConnectedFunction)index_index, commons);
+       zak_cgi_url_connect (zcgi_url, "/index/category", (ZakCgiUrlConnectedFunction)index_category, commons);
+       zak_cgi_url_connect (zcgi_url, "/index/save", (ZakCgiUrlConnectedFunction)index_save, commons);
 
        zak_cgi_url_connect (zcgi_url, "/login[/]?", (ZakCgiUrlConnectedFunction)login_index, commons);
        zak_cgi_url_connect (zcgi_url, "/login/index", (ZakCgiUrlConnectedFunction)login_index, commons);