#include <libzakcgi/libzakcgi.h>
#include <libgdaex/libgdaex.h>
+#include <libzakutils/libzakutils.h>
#include "commons.h"
#include "index.h"
GdaConnection *gdacon;
+ gchar *str;
+
gda_init ();
/* inizializzazione commons */
commons->formdir = g_strdup (FORMDIR);
commons->imagesdir = g_strdup (IMAGESDIR);
+ /* inizializzo solipa */
+ commons->solipa = solipa_new ();
+
/* leggo la configurazione dal file */
error = NULL;
commons->config = g_key_file_new ();
zak_autho_set_role_name_prefix (commons->autho, g_key_file_get_value (commons->config, "ZAKAUTHO", "role_name_prefix", NULL));
zak_autho_set_resource_name_prefix (commons->autho, g_key_file_get_value (commons->config, "ZAKAUTHO", "resource_name_prefix", NULL));
+ /* leggo i parametri per l'invio delle mail */
+ error = NULL;
+ commons->smtp_uri = g_key_file_get_value (commons->config, "MAIL", "smtp", &error);
+ if (commons->smtp_uri == NULL)
+ {
+ g_warning ("Impossibile leggere l'indirizzo del server smtp: %s.\n",
+ error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ }
+
+ error = NULL;
+ str = g_key_file_get_value (commons->config, "MAIL", "security_method", &error);
+ if (str == NULL)
+ {
+ commons->smtp_security_method = CAMEL_NETWORK_SECURITY_METHOD_NONE;
+ }
+ else
+ {
+ commons->smtp_security_method = strtol (str, NULL, 10);
+ }
+
+ error = NULL;
+ str = g_key_file_get_value (commons->config, "MAIL", "use_auth", &error);
+ if (str == NULL)
+ {
+ commons->smtp_use_auth = FALSE;
+ }
+ else
+ {
+ commons->smtp_use_auth = zak_utils_string_to_boolean (str);
+ }
+
+ error = NULL;
+ commons->user_registration_from = g_key_file_get_value (commons->config, "MAIL", "user_registration_from", &error);
+ if (commons->user_registration_from == NULL
+ || g_strcmp0 (g_strstrip (commons->user_registration_from), "") == 0)
+ {
+ g_warning ("Impossibile leggere l'indirizzo del mittente per le mail di conferma registrazione utenti: %s.\n",
+ error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ }
+
commons->zcgi_main = zak_cgi_main_new ();
commons->out = g_string_new ("");
zak_cgi_url_connect (zcgi_url, "/login/index", (ZakCgiUrlConnectedFunction)login_index, commons);
zak_cgi_url_connect (zcgi_url, "/login/logout", (ZakCgiUrlConnectedFunction)login_logout, commons);
-
zak_cgi_url_connect (zcgi_url, "/user[/]?", (ZakCgiUrlConnectedFunction)user_register, commons);
zak_cgi_url_connect (zcgi_url, "/user/register", (ZakCgiUrlConnectedFunction)user_register, commons);
g_string_free (header, TRUE);
g_string_free (commons->out, TRUE);
+ g_object_unref (commons->solipa);
+
return 0;
}
#include <config.h>
#endif
+#include <gcrypt.h>
+
+#include <glib/gprintf.h>
+#include <libzakutils/libzakutils.h>
#include <libzakform/libzakform.h>
#include <libzakformgdaex/libzakformgdaex.h>
+#include <libsolipa/mail.h>
#include "user.h"
gchar *cnc_string;
GdaEx *gdaex_authedb;
+ SolipaMail *smail;
+ CamelInternetAddress *addr;
+ GSList *addrs;
+
+ gchar *password;
+ gchar *link_conferma;
+ gchar *body;
+ gchar *body_html;
+
+ ZakFormElement *form_element;
+
Commons *commons = (Commons *)user_data;
if (get_is_logged (commons))
{
g_warning ("Impossibile leggere la stringa di connessione per libzakauthe dal file di configurazione: %s.",
error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
- ctpl_environ_push_string (env, "form", "Form is valid!!! NOT SAVED!!!");
+ ctpl_environ_push_string (env, "form", "Errore durante il salvataggio.");
}
else
{
if (gdaex_authedb == NULL)
{
g_warning ("Errore nella connessione al database libzakauthe: %s", cnc_string);
- ctpl_environ_push_string (env, "form", "Form is valid!!! NOT SAVED!!!");
+ ctpl_environ_push_string (env, "form", "Errore durante il salvataggio.");
}
else
{
form_provider = zak_form_gdaex_provider_new (gdaex_authedb, "users");
if (form_provider == NULL)
{
- g_warning ("Errore nella creazione dewl form_provider.");
- ctpl_environ_push_string (env, "form", "Form is valid!!! NOT SAVED!!!");
+ g_warning ("Errore nella creazione del form_provider.");
+ ctpl_environ_push_string (env, "form", "Errore durante il salvataggio.");
}
else
{
if (zak_form_form_insert (ZAK_FORM_FORM (form), ZAK_FORM_IPROVIDER (form_provider)))
{
- ctpl_environ_push_string (env, "form", "Form is valid!!! SAVED WITH SUCCESS!!!");
+ form_element = zak_form_form_get_element_by_id (ZAK_FORM_FORM (form), "code");
+
+ /* genero la password */
+ gchar *str;
+ gchar digest[17] = "";
+ gchar pwd_gcrypt[33] = "";
+
+ str = g_strdup_printf ("%f", g_random_double ());
+
+ gcry_md_hash_buffer (GCRY_MD_MD5, &digest, str, strlen (str));
+ for (i = 0; i < 16; i++)
+ {
+ g_sprintf (pwd_gcrypt + (i * 2), "%02x", digest[i] & 0xFF);
+ }
+ pwd_gcrypt[32] = '\0';
+
+ password = g_strndup (&pwd_gcrypt[0], 8);
+
+ g_free (str);
+
+ /* genero il link conferma */
+ str = g_strdup_printf ("%f", g_random_double ());
+
+ gcry_md_hash_buffer (GCRY_MD_MD5, &digest, str, strlen (str));
+ for (i = 0; i < 16; i++)
+ {
+ g_sprintf (pwd_gcrypt + (i * 2), "%02x", digest[i] & 0xFF);
+ }
+ pwd_gcrypt[32] = '\0';
+
+ link_conferma = g_strdup_printf ("http://localhost/bcity/bcity_fe/user/confirm/%s",
+ &pwd_gcrypt[0]);
+
+ g_free (str);
+
+ /* salvo l'attesa di registrazione nel db */
+ GValue *gval;
+ GdaExSqlBuilder *sqlb;
+ GDateTime *gdt_now;
+ GDateTime *gdt;
+
+ sqlb = gdaex_sql_builder_new (GDA_SQL_STATEMENT_INSERT);
+
+ gdaex_sql_builder_from (sqlb, "users_to_register", "");
+
+ gval = zak_utils_gvalue_new_string (&pwd_gcrypt[0]);
+ gdaex_sql_builder_fields (sqlb,
+ "users_to_register", "link", "", gval,
+ NULL);
+ g_value_unset (gval);
+
+ gval = zak_utils_gvalue_new_string (zak_form_element_get_value (form_element));
+ gdaex_sql_builder_fields (sqlb,
+ "users_to_register", "code", "", gval,
+ NULL);
+ g_value_unset (gval);
+
+ gdt_now = g_date_time_new_now_local ();
+ gdt = g_date_time_add_days (gdt_now, 15);
+ gval = zak_utils_gvalue_new_string (zak_utils_gdatetime_to_sql (gdt, NULL));
+ gdaex_sql_builder_fields (sqlb,
+ "users_to_register", "expire", "", gval,
+ NULL);
+ g_value_unset (gval);
+ g_date_time_unref (gdt_now);
+ g_date_time_unref (gdt);
+
+ gval = zak_utils_gvalue_new_string (password);
+ gdaex_sql_builder_fields (sqlb,
+ "users_to_register", "password", "", gval,
+ NULL);
+ g_value_unset (gval);
+
+ if (gdaex_sql_builder_execute (sqlb, commons->gdaex, NULL) < 0)
+ {
+ g_warning ("Errore durante il salvataggio dell'attesa registrazione.");
+ }
+
+ /* invio la mail */
+ smail = solipa_mail_new (commons->solipa);
+ solipa_mail_set_security_method (smail, commons->smtp_security_method);
+
+ solipa_mail_set_subject (smail, "Conferma iscrizione a B-City");
+
+ addr = camel_internet_address_new ();
+
+ addrs = solipa_mail_get_addresses_from_string (commons->user_registration_from);
+ camel_internet_address_add (addr,
+ g_hash_table_lookup ((GHashTable *)addrs->data, "name"),
+ g_hash_table_lookup ((GHashTable *)addrs->data, "address"));
+ solipa_mail_set_from (smail, addr);
+
+ camel_address_remove (CAMEL_ADDRESS (addr), -1);
+
+ addrs = solipa_mail_get_addresses_from_string (zak_form_element_get_value (form_element));
+ camel_internet_address_add (addr,
+ g_hash_table_lookup ((GHashTable *)addrs->data, "name"),
+ g_hash_table_lookup ((GHashTable *)addrs->data, "address"));
+ solipa_mail_add_recipient (smail, addr, SOLIPA_MAIL_RECIPIENT_TYPE_TO);
+ g_object_unref (addr);
+
+ body = g_strdup_printf ("Conferma la registrazione facendo clic sul seguente collegamento (valido per 15 giorni).\n\n"
+ "%s\n\n"
+ "La password a te assegnata è: %s",
+ link_conferma,
+ password);
+ body_html = g_strdup_printf ("<html>\n"
+ "<head>\n"
+ "<title>B-City: conferma registrazione</title\n"
+ "</head>\n"
+ "<body>\n"
+ "<div>Conferma la registrazione facendo clic sul seguente collegamento (valido per 15 giorni).</div>\n"
+ "<div>\n"
+ "<a href=\"%s\">%s</a>"
+ "</div>\n"
+ "<div>La password a te assegnata è: %s</div>\n"
+ "</body>\n"
+ "</html>",
+ link_conferma,
+ link_conferma,
+ password);
+
+ solipa_mail_set_body (smail,
+ body,
+ body_html);
+
+ solipa_mail_send (smail, commons->smtp_uri);
+
+ g_free (body);
+ g_free (body_html);
+
+ ctpl_environ_push_string (env, "form", "Utente registrato con successo. È stata inviata una mail per la procedura di conferma con la password assegnata.");
}
else
{
- ctpl_environ_push_string (env, "form", "Form is valid!!! NOT SAVED!!!");
+ ctpl_environ_push_string (env, "form", "Errore durante il salvataggio.");
}
}
}