]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Aggiunte le funzioni SolipaUtils::chk_codice_fiscale e
authorAndrea Zagli <azagli@libero.it>
Sun, 20 Mar 2011 07:56:03 +0000 (08:56 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 20 Mar 2011 07:56:03 +0000 (08:56 +0100)
SolipaUtils::chk_partita_iva.

.gitignore
src/utils.c
src/utils.h
tests/Makefile.am
tests/utils_codfisc_piva.c [new file with mode: 0644]

index 64023a7234b3f1b03a538235b6906f1591de9191..f4d398b191f8c08c6eccc4d66d19d9932ede17a6 100644 (file)
@@ -50,6 +50,7 @@ Rules-quot
 tests/allegato
 tests/mail
 tests/utils
+tests/utils_codfisc_piva
 tests/utils_format_money
 tests/utils_round
 *.csv
index ca68a6d42c2667c853790d02cd8c131cb1112d68..af4d2b1a290612fd10c21424d6248fdd4612d64e 100644 (file)
@@ -769,6 +769,144 @@ const gchar
        return ret;
 }
 
+gboolean
+solipa_chk_codice_fiscale (const gchar *codice_fiscale, gboolean empty_good)
+{
+       gchar *cf;
+
+       guint s;
+       guint i;
+       guint c;
+
+       guint setdisp[] = { 1, 0, 5, 7, 9, 13, 15, 17, 19, 21, 2, 4, 18, 20,
+                           11, 3, 6, 8, 12, 14, 16, 10, 22, 25, 24, 23 };
+
+       if (codice_fiscale == NULL)
+               {
+                       cf = g_strdup ("");
+               }
+       else
+               {
+                       cf = g_strdup (codice_fiscale);
+               }
+
+       cf = g_strstrip (cf);
+
+       if (g_strcmp0 (cf, "") == 0)
+               {
+                       return empty_good;
+               }
+
+       if (g_utf8_strlen (cf, -1) != 16)
+               {
+                       g_warning ("Lunghezza (%d) errata.", g_utf8_strlen (cf, -1));
+                       return FALSE;
+               }
+
+       cf = g_ascii_strup (cf, -1);
+
+       for (i = 0; i < 16; i++)
+               {
+                       if (!isdigit (cf[i]) && !('A' <= cf[i] && cf[i] <= 'Z'))
+                               {
+                                       g_warning ("Caratteri non validi (%c).", cf[i]);
+                                       return FALSE;
+                               }
+               }
+
+       s = 0;
+       for (i = 1; i <= 13; i += 2)
+               {
+                       if (isdigit (cf[i]))
+                               {
+                                       s += cf[i] - '0';
+                               }
+                       else
+                               {
+                                       s += cf[i] - 'A';
+                               }
+               }
+
+       for (i = 0; i <= 14; i += 2)
+               {
+                       c = cf[i];
+                       if (isdigit (c))
+                               {
+                                       c = c - '0' + 'A';
+                               }
+                       s += setdisp[c - 'A'];
+               }
+
+       if ((s % 26 + 'A') != cf[15])
+               {
+                       return FALSE;
+               }
+
+       return TRUE;
+}
+
+gboolean
+solipa_chk_partita_iva (const gchar *partita_iva, gboolean empty_good)
+{
+       gchar *piva;
+
+       guint i;
+       guint c;
+       guint s;
+
+       if (partita_iva == NULL)
+               {
+                       piva = g_strdup ("");
+               }
+       else
+               {
+                       piva = g_strdup (partita_iva);
+               }
+
+       piva = g_strstrip (piva);
+
+       if (g_strcmp0 (piva, "") == 0)
+               {
+                       return empty_good;
+               }
+
+       if (g_utf8_strlen (piva, -1) != 11)
+               {
+                       return FALSE;
+               }
+
+       for (i = 0; i < 11; i++)
+               {
+                       if (!isdigit(piva[i]))
+                               {
+                                       return FALSE;
+                               }
+               }
+
+       s = 0;
+       for (i = 0; i <= 9; i += 2)
+               {
+                       s += piva[i] - '0';
+               }
+
+       for (i = 1; i <= 9; i += 2)
+               {
+                       c = 2 * (piva[i] - '0');
+                       if (c > 9)
+                               {
+                                       c = c - 9;
+                               }
+                       s += c;
+               }
+
+       if ((10 - s % 10) % 10 != piva[10] - '0')
+               {
+                       return FALSE;
+               }
+
+       return TRUE;
+}
+
 /**
  * This function is copied from
  * http://bugzilla.gnome.org/show_bug.cgi?id=524831.
index ed5fab13cb3e41c2829d246865937b2e0b29cf6c..24092c40552d45a136bd1d3352ccac72b0214450 100644 (file)
@@ -64,6 +64,9 @@ struct tm *solipa_gtk_tree_model_get_value_tm (GtkTreeModel *model, GtkTreeIter
 
 const gchar *solipa_tm_to_sql (struct tm *tm_data, const gchar *format);
 
+gboolean solipa_chk_codice_fiscale (const gchar *codice_fiscale, gboolean empty_good);
+gboolean solipa_chk_partita_iva (const gchar *partita_iva, gboolean empty_good);
+
 gchar *g_mkdtemp (gchar *tmpl);
 
 
index 457715f03187b4ac51fbad42d65a6fff91dbc8f5..535ef49872c9e6efa9680da80c021e723c8c3fe9 100644 (file)
@@ -12,5 +12,6 @@ LDADD = $(top_builddir)/src/libsolipa.la
 noinst_PROGRAMS = allegato \
                   mail \
                   utils \
+                  utils_codfisc_piva \
                   utils_format_money \
                   utils_round
diff --git a/tests/utils_codfisc_piva.c b/tests/utils_codfisc_piva.c
new file mode 100644 (file)
index 0000000..b7b60fd
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <solipa.h>
+#include <utils.h>
+
+int
+main (int argc, char *argv[])
+{
+       gtk_init (&argc, &argv);
+
+       g_message ("Codice Fiscale %s %s.", argv[1], solipa_chk_codice_fiscale (argv[1], TRUE) ? "corretto" : "non corretto");
+
+       g_message ("Partita IVA %s %s.", argv[2], solipa_chk_partita_iva (argv[2], TRUE) ? "corretta" : "non corretta");
+
+       return 0;
+}