]> saetta.ns0.it Git - bcity/fe/commitdiff
Hello world.
authorAndrea Zagli <azagli@libero.it>
Wed, 27 Jan 2016 17:29:01 +0000 (18:29 +0100)
committerAndrea Zagli <azagli@libero.it>
Wed, 27 Jan 2016 17:29:01 +0000 (18:29 +0100)
18 files changed:
.gitignore
Makefile.am
configure.ac
data/Makefile.am [new file with mode: 0644]
data/bcity_fe/Makefile.am [new file with mode: 0644]
data/bcity_fe/ctpl/Makefile.am [new file with mode: 0644]
data/bcity_fe/ctpl/index_index.ctpl [new file with mode: 0644]
data/bcity_fe/ctpl/template.ctpl [new file with mode: 0644]
doc/bcity_fe/Makefile.am
doc/bcity_fe/db/Makefile.am [new file with mode: 0644]
doc/bcity_fe/db/bcity_fe.sql [new file with mode: 0644]
doc/bcity_fe/examples/bcity_fe.conf
src/.htaccess [new file with mode: 0644]
src/Makefile.am
src/commons.h
src/index.c [new file with mode: 0644]
src/index.h [new file with mode: 0644]
src/main.c

index f6fc41f3c3367ce0e6e9cd9e5875def1ab37982d..9e267da25de5c63c39718cf2bc9ab7d7fb7e4974 100644 (file)
@@ -50,4 +50,5 @@ intltool-*
 Rules-quot
 *.exe
 *.csv
-src/bcity_fe
\ No newline at end of file
+src/bcity_fe
+data/bcity_fe/conf
\ No newline at end of file
index 05fc2047186af25198324f0c3befc8ced8c6fb2e..d92f21793f0d1468202238d65dd623af920c061c 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = doc po src
+SUBDIRS = data doc po src
 
 ACLOCAL_AMFLAGS = -I m4
 
index 088373133da947b49878ca0096033017ff87877a..0198b211a520fff6aaf909ea18e7242172999044 100644 (file)
@@ -78,8 +78,12 @@ AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes])
 # Output files
 AC_CONFIG_FILES([
        Makefile
+       data/Makefile
+       data/bcity_fe/Makefile
+       data/bcity_fe/ctpl/Makefile
        doc/Makefile
        doc/bcity_fe/Makefile
+       doc/bcity_fe/db/Makefile
        doc/bcity_fe/examples/Makefile
        po/Makefile.in
        src/Makefile
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644 (file)
index 0000000..550fc97
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = bcity_fe
diff --git a/data/bcity_fe/Makefile.am b/data/bcity_fe/Makefile.am
new file mode 100644 (file)
index 0000000..c909be9
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = ctpl
diff --git a/data/bcity_fe/ctpl/Makefile.am b/data/bcity_fe/ctpl/Makefile.am
new file mode 100644 (file)
index 0000000..36db9a1
--- /dev/null
@@ -0,0 +1,7 @@
+ctpldir = $(datadir)/$(PACKAGE)/ctpl
+
+ctpl_DATA = \
+            template.ctpl \
+            index_index.ctpl
+
+EXTRA_DIST =
diff --git a/data/bcity_fe/ctpl/index_index.ctpl b/data/bcity_fe/ctpl/index_index.ctpl
new file mode 100644 (file)
index 0000000..1b781d1
--- /dev/null
@@ -0,0 +1,3 @@
+<h1>B-City</h1>
+
+<h2>Hello world!!!</h2>
\ No newline at end of file
diff --git a/data/bcity_fe/ctpl/template.ctpl b/data/bcity_fe/ctpl/template.ctpl
new file mode 100644 (file)
index 0000000..dd977e5
--- /dev/null
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html lang="it">
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
+    <title>B-City</title>
+
+    <!-- Bootstrap -->
+    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
+       <!-- Optional theme -->
+       <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
+
+    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
+    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
+    <!-- Include all compiled plugins (below), or include individual files as needed -->
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
+
+       {head}
+
+    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
+    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
+    <!--[if lt IE 9]>
+      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
+      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
+    <![endif]-->
+  </head>
+  <body>
+       <div class="container">
+      {body}
+       </div>
+  </body>
+</html>
index aee2d7baa2ad1da4f83088ee571f25af6c1c7e4f..fa58b33d81eacb525d8fc40687148eb14c80f6cf 100644 (file)
@@ -1 +1 @@
-SUBDIRS = examples
+SUBDIRS = db examples
diff --git a/doc/bcity_fe/db/Makefile.am b/doc/bcity_fe/db/Makefile.am
new file mode 100644 (file)
index 0000000..2baf5e0
--- /dev/null
@@ -0,0 +1,6 @@
+bcity_fe_dbdir = $(docdir)/db
+
+bcity_fe_db_DATA = \
+                   bcity_fe.sql
+
+EXTRA_DIST = $(bcity_fe_db_DATA)
diff --git a/doc/bcity_fe/db/bcity_fe.sql b/doc/bcity_fe/db/bcity_fe.sql
new file mode 100644 (file)
index 0000000..3fa46c1
--- /dev/null
@@ -0,0 +1,19 @@
+--
+-- PostgreSQL database dump
+--
+
+-- Dumped from database version 9.5.0
+-- Dumped by pg_dump version 9.5.0
+
+SET statement_timeout = 0;
+SET lock_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = on;
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+SET row_security = off;
+
+--
+-- PostgreSQL database dump complete
+--
+
index d012bf7bb1f4a2c2523f1f11f7de03584c85d87d..5bc008fb1d76f143c54715384571126c450158e9 100644 (file)
@@ -1,2 +1,6 @@
+[ZAKAUTHE]
+plugin=/usr/local/lib/libzakautke/plugins/libzakauthedb.so
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=bcity;SEARCHPATH=zakauthedb
+
 [DB]
 cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=bcity
diff --git a/src/.htaccess b/src/.htaccess
new file mode 100644 (file)
index 0000000..2640e00
--- /dev/null
@@ -0,0 +1,7 @@
+<IfModule mod_rewrite.c>
+    RewriteEngine On
+    #RewriteCond %{REQUEST_FILENAME} !-d
+    #RewriteCond %{REQUEST_FILENAME} !-f
+    RewriteRule ^bcity_fe$ bcity_fe?_url=/ [QSA,END]
+    RewriteRule ^bcity_fe/(.*)$ bcity_fe?_url=/$1 [QSA,END]
+</IfModule>
index 12b191ade59bce0d28836a3db41de98081c23101..851a65c4737119a19f5dca032c5678a9c9986e96 100644 (file)
@@ -1,9 +1,11 @@
-imagesdir = $(datadir)/$(PACKAGE)/images
+configdir = $(datadir)/$(PACKAGE)/conf
 ctpldir = $(datadir)/$(PACKAGE)/ctpl
+imagesdir = $(datadir)/$(PACKAGE)/images
 
 AM_CPPFLAGS = $(BCITYFE_CFLAGS) \
-              -DIMAGESDIR=\""$(imagesdir)"\" \
-              -DCTPLDIR=\""$(ctpldir)"\"
+              -DCONFIGDIR=\""$(configdir)"\" \
+              -DCTPLDIR=\""$(ctpldir)"\" \
+              -DIMAGESDIR=\""$(imagesdir)"\"
 
 LIBS = $(BCITYFE_LIBS) \
        -export-dynamic
@@ -13,4 +15,6 @@ bin_PROGRAMS = bcity_fe
 bcity_fe_SOURCES = \
                    commons.c \
                    commons.h \
+                   index.c \
+                   index.h \
                    main.c
index 9027f246c980cde4bbae0bb3bd473c7f196a76be..0c5bd7230ed5d58ba7e9dc49f139ef5f21ce7c5b 100644 (file)
        #include <config.h>
 #endif
 
+#include <ctpl/ctpl.h>
 #include <libzakcgi/libzakcgi.h>
 #include <libgdaex/libgdaex.h>
 
 typedef struct
        {
-               gchar *imagesdir;
+               gchar *configdir;
                gchar *ctpldir;
+               gchar *imagesdir;
+
+               GKeyFile *config;
 
                GdaEx *gdaex;
                gulong hid_main_on_before_execute;
diff --git a/src/index.c b/src/index.c
new file mode 100644 (file)
index 0000000..fbc95b3
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+ * Copyright (C) 2015 Andrea Zagli <a.zagli@comune.scandicci.fi.it>
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include <syslog.h>
+
+#include "index.h"
+
+void
+index_index (GMatchInfo *minfo, gpointer user_data)
+{
+       CtplEnviron *env;
+
+       gchar *filename;
+       gchar *content;
+
+       Commons *commons = (Commons *)user_data;
+
+       filename = g_build_filename (commons->ctpldir, "index_index.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", 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);
+}
diff --git a/src/index.h b/src/index.h
new file mode 100644 (file)
index 0000000..07c7cb6
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __INDEX_H__
+#define __INDEX_H__
+
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include "commons.h"
+
+
+void index_index (GMatchInfo *minfo, gpointer user_data);
+
+
+#endif /* __INDEX_H__ */
index 0f0a54f728b1dba4c497c8740b63bc525cef9f64..268cad4221b38d33d4b45f665b3b6813acd527a0 100644 (file)
 
 #include <syslog.h>
 
-#include <ctpl/ctpl.h>
-
 #include <libzakcgi/libzakcgi.h>
 #include <libgdaex/libgdaex.h>
-#include <libzakutils/libzakutils.h>
 
 #include "commons.h"
+#include "index.h"
 
 int
 main (int argc, char *argv[])
@@ -37,39 +35,39 @@ main (int argc, char *argv[])
 
        gchar *cnc_string;
 
-       gchar *sql;
-       GdaDataModel *dm;
-
-       gint i;
-
        Commons *commons;
-       GKeyFile *config;
 
        ZakCgiUrl *zcgi_url;
 
        GString *header;
 
+       gchar *filename;
+
        gda_init ();
 
        /* inizializzazione commons */
        commons = (Commons *)g_new0 (Commons, 1);
 
+       commons->configdir = g_strdup (CONFIGDIR);
+       commons->ctpldir = g_strdup (CTPLDIR);
+       commons->imagesdir = g_strdup (IMAGESDIR);
+
        /* leggo la configurazione dal file */
        error = NULL;
-       config = g_key_file_new ();
-       if (!g_key_file_load_from_file (config, "../app/conf/bcity_fe.conf", G_KEY_FILE_NONE, &error))
+       commons->config = g_key_file_new ();
+       filename = g_build_filename (commons->configdir, "bcity_fe.conf", NULL);
+       if (!g_key_file_load_from_file (commons->config, filename, G_KEY_FILE_NONE, &error))
                {
-                       g_error ("Impossibile caricare il file di configurazione specificato: %s\n%s", argv[1],
+                       g_error ("Impossibile caricare il file di configurazione specificato: %s\n%s", filename,
                                 error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       g_free (filename);
                        return 0;
                }
-
-       commons->imagesdir = g_strdup (IMAGESDIR);
-       commons->ctpldir = g_strdup (CTPLDIR);
+       g_free (filename);
 
        /* leggo la stringa di connessione al db */
        error = NULL;
-       cnc_string = g_key_file_get_value (config, "DB", "cnc_string", &error);
+       cnc_string = g_key_file_get_value (commons->config, "DB", "cnc_string", &error);
        if (cnc_string == NULL)
                {
                        g_warning ("Impossibile leggere la stringa di connessione dal file di configurazione: %s.",
@@ -93,16 +91,9 @@ main (int argc, char *argv[])
        /* Routing */
        zcgi_url = zak_cgi_url_new (commons->zcgi_main);
 
-       /* zak_cgi_url_connect (zcgi_url, "/index/index", (ZakCgiUrlConnectedFunction)index_index, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/index/login", (ZakCgiUrlConnectedFunction)index_login, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/index/loginret", (ZakCgiUrlConnectedFunction)index_loginret, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/richiesta/elenco", (ZakCgiUrlConnectedFunction)richiesta_elenco, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/richiesta/new", (ZakCgiUrlConnectedFunction)richiesta_new, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/richiesta/save", (ZakCgiUrlConnectedFunction)richiesta_save, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/richiesta/costo/(?<id_scadenze>[1-9][0-9]*)/(?<n_particelle>[1-9][0-9]*)/(?<id_tipi_certificato>[1-9][0-9]*)", (ZakCgiUrlConnectedFunction)richiesta_costo, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/richiedente/edit", (ZakCgiUrlConnectedFunction)richiedente_edit, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/foglio_particella/exists/(?<foglio>[a-zA-Z0-9]+)/(?<particella>[a-zA-Z0-9]+)", (ZakCgiUrlConnectedFunction)foglio_particella_exists, commons); */
-       /* zak_cgi_url_connect (zcgi_url, "/ricercacitta", (ZakCgiUrlConnectedFunction)ricerca_citta, commons); */
+       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_dispatch (zcgi_url);