]> saetta.ns0.it Git - bcity/fe/commitdiff
Started categories view.
authorAndrea Zagli <azagli@libero.it>
Sat, 30 Jan 2016 15:34:49 +0000 (16:34 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 30 Jan 2016 15:34:49 +0000 (16:34 +0100)
data/bcity_fe/ctpl/index_category.ctpl
doc/bcity_fe/db/bcity_fe.sql
src/index.c

index 9b38d859d274ab30fe5086e7d157652da7975f17..05986e0cce4675c054e30642b8c004deedc51dbd 100644 (file)
@@ -2,6 +2,8 @@
 
 <h2>Selezionare la categoria della segnalazione</h2>
 
+{categorie}
+
 <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 bf14ecbdca0482261b221a9ecb9d1e7e84cf02bb..6457010c898d4d458dc16cb9efb58753f70eb70b 100644 (file)
@@ -17,6 +17,18 @@ SET search_path = public, pg_catalog;
 
 SET default_with_oids = false;
 
+--
+-- Name: categorie; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE categorie (
+    id integer NOT NULL,
+    id_categorie integer DEFAULT 0,
+    descrizione character varying(255) DEFAULT ''::character varying,
+    status character varying(1) DEFAULT ''::character varying
+);
+
+
 --
 -- Name: segnalazioni; Type: TABLE; Schema: public; Owner: -
 --
@@ -29,6 +41,14 @@ CREATE TABLE segnalazioni (
 );
 
 
+--
+-- Name: categorie_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY categorie
+    ADD CONSTRAINT categorie_pkey PRIMARY KEY (id);
+
+
 --
 -- Name: segnalazioni_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
index 75f48345fed86f1c564416eaba151b087a1fa3b8..7ee30470432af27075f169cbe36d150acf3c2a2a 100644 (file)
@@ -114,6 +114,12 @@ index_category (GMatchInfo *minfo, gpointer user_data)
        gchar *filename;
        gchar *content;
 
+       guint id_categorie;
+       gchar *sql;
+       GdaDataModel *dm;
+       GdaDataModelIter *iter;
+       GString *categorie;
+
        Commons *commons = (Commons *)user_data;
 
        if (!get_is_logged (commons))
@@ -127,10 +133,43 @@ index_category (GMatchInfo *minfo, gpointer user_data)
                        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")));
 
+                       id_categorie = 0;
+                       categorie = g_string_new ("");
+
+                       sql = g_strdup_printf ("SELECT c.*,"
+                                                                  " CASE WHEN COALESCE ((SELECT c1.id FROM categorie AS c1 WHERE c1.id_categorie = c.id), 0) != 0 THEN TRUE ELSE FALSE END AS finale"
+                                                                  " FROM categorie AS c"
+                                                                  " WHERE c.status <> 'E'"
+                                                                  " AND c.id_categorie = %d",
+                                                                  id_categorie);
+                       dm = gdaex_query (commons->gdaex, sql);
+                       g_free (sql);
+                       if (dm != NULL)
+                               {
+                                       g_string_append_printf (categorie, "<ul>\n");
+
+                                       iter = gda_data_model_create_iter (dm);
+                                       while (gda_data_model_iter_move_next (iter))
+                                               {
+                                                       g_string_append_printf (categorie,
+                                                                                                       "<li>%s</ul>\n",
+                                                                                                       gdaex_data_model_iter_get_field_value_stringify_at (iter, "descrizione"));
+                                               }
+
+                                       g_string_append_printf (categorie, "</ul>\n");
+
+                                       g_object_unref (dm);
+                               }
+
+                       env = ctpl_environ_new ();
+                       ctpl_environ_push_string (env, "categorie", categorie->str);
+
                        filename = g_build_filename (commons->ctpldir, "index_category.ctpl", NULL);
-                       content = get_ctpl_filled (filename, NULL);
+                       content = get_ctpl_filled (filename, env);
                        g_free (filename);
 
+                       g_string_free (categorie, TRUE);
+
                        env = ctpl_environ_new ();
                        ctpl_environ_push_string (env, "head", "");
                        ctpl_environ_push_string (env, "body_tag", "");
@@ -157,6 +196,9 @@ index_save (GMatchInfo *minfo, gpointer user_data)
        gchar *filename;
        gchar *content;
 
+       guint newid;
+       gchar *sql;
+
        Commons *commons = (Commons *)user_data;
 
        if (!get_is_logged (commons))
@@ -167,9 +209,6 @@ index_save (GMatchInfo *minfo, gpointer user_data)
 
        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"