ctpl_DATA = \
template.ctpl \
- index_index.ctpl
+ index_index.ctpl \
+ login_index.ctpl
EXTRA_DIST =
--- /dev/null
+<form class="form-signin">
+ <h2 class="form-signin-heading">B-City</h2>
+ <label for="inputEmail" class="sr-only">Email</label>
+ <input type="email" id="inputEmail" class="form-control" placeholder="Email" required autofocus>
+ <label for="inputPassword" class="sr-only">Password</label>
+ <input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
+ <button class="btn btn-lg btn-primary btn-block" type="submit">Accedi</button>
+</form>
<title>B-City</title>
<!-- Bootstrap -->
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
+ <!-- Latest compiled and minified CSS -->
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
+
<!-- Optional theme -->
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- 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>
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
+ <!-- Latest compiled and minified JavaScript -->
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
{head}
commons.h \
index.c \
index.h \
+ login.c \
+ login.h \
main.c
return ret;
}
+
+gboolean
+get_is_logged (Commons *commons)
+{
+ return (zak_cgi_session_get_value (commons->zcgi_session, "user_name") != NULL);
+}
gchar *get_ctpl_filled (const gchar *ctpl_file, CtplEnviron *env);
+gboolean get_is_logged (Commons *commons);
#endif /* __COMMONS_H__ */
/*
- * Copyright (C) 2015 Andrea Zagli <a.zagli@comune.scandicci.fi.it>
+ * 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
Commons *commons = (Commons *)user_data;
+ if (!get_is_logged (commons))
+ {
+ zak_cgi_main_redirect (commons->zcgi_main, "/bcity/bcity_fe/login/index");
+ return;
+ }
+
filename = g_build_filename (commons->ctpldir, "index_index.ctpl", NULL);
content = get_ctpl_filled (filename, NULL);
g_free (filename);
--- /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.
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include <syslog.h>
+
+#include "login.h"
+
+void
+login_index (GMatchInfo *minfo, gpointer user_data)
+{
+ CtplEnviron *env;
+
+ gchar *filename;
+ gchar *content;
+
+ Commons *commons = (Commons *)user_data;
+
+ filename = g_build_filename (commons->ctpldir, "login_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 __LOGIN_H__
+#define __LOGIN_H__
+
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include "commons.h"
+
+
+void login_index (GMatchInfo *minfo, gpointer user_data);
+
+
+#endif /* __INDEX_H__ */
#include <libgdaex/libgdaex.h>
#include "commons.h"
+#include "login.h"
#include "index.h"
int
/* Routing */
zcgi_url = zak_cgi_url_new (commons->zcgi_main);
+ zak_cgi_url_connect (zcgi_url, "", (ZakCgiUrlConnectedFunction)index_index, 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_connect (zcgi_url, "/login[/]?", (ZakCgiUrlConnectedFunction)login_index, commons);
+ zak_cgi_url_connect (zcgi_url, "/login/index", (ZakCgiUrlConnectedFunction)login_index, commons);
+
zak_cgi_url_dispatch (zcgi_url);
header = g_string_new (ZAK_CGI_STANDARD_HEADER_HTML);