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
-SUBDIRS = doc po src
+SUBDIRS = data doc po src
ACLOCAL_AMFLAGS = -I m4
# 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
--- /dev/null
+SUBDIRS = bcity_fe
--- /dev/null
+SUBDIRS = ctpl
--- /dev/null
+ctpldir = $(datadir)/$(PACKAGE)/ctpl
+
+ctpl_DATA = \
+ template.ctpl \
+ index_index.ctpl
+
+EXTRA_DIST =
--- /dev/null
+<h1>B-City</h1>
+
+<h2>Hello world!!!</h2>
\ No newline at end of file
--- /dev/null
+<!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>
-SUBDIRS = examples
+SUBDIRS = db examples
--- /dev/null
+bcity_fe_dbdir = $(docdir)/db
+
+bcity_fe_db_DATA = \
+ bcity_fe.sql
+
+EXTRA_DIST = $(bcity_fe_db_DATA)
--- /dev/null
+--
+-- 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
+--
+
+[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
--- /dev/null
+<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>
-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
bcity_fe_SOURCES = \
commons.c \
commons.h \
+ index.c \
+ index.h \
main.c
#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;
--- /dev/null
+/*
+ * 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);
+}
--- /dev/null
+/*
+ * 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__ */
#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[])
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.",
/* 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);