summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'libappstream-glib/as-utils.c')
-rw-r--r--libappstream-glib/as-utils.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/libappstream-glib/as-utils.c b/libappstream-glib/as-utils.c
index ca28bc3..30e57ab 100644
--- a/libappstream-glib/as-utils.c
+++ b/libappstream-glib/as-utils.c
@@ -1669,3 +1669,39 @@ as_utils_string_replace (GString *string, const gchar *search, const gchar *repl
return count;
}
+
+/**
+ * as_utils_iso8601_to_datetime: (skip)
+ * @iso_date: The ISO8601 date
+ *
+ * Converts an ISO8601 to a #GDateTime.
+ *
+ * Returns: a #GDateTime, or %NULL for error.
+ *
+ * Since: 0.5.18
+ **/
+GDateTime *
+as_utils_iso8601_to_datetime (const gchar *iso_date)
+{
+ GTimeVal tv;
+ guint dmy[] = {0, 0, 0};
+
+ /* nothing set */
+ if (iso_date == NULL || iso_date[0] == '\0')
+ return NULL;
+
+ /* try to parse complete ISO8601 date */
+ if (g_strstr_len (iso_date, -1, " ") != NULL) {
+ if (g_time_val_from_iso8601 (iso_date, &tv) && tv.tv_sec != 0)
+ return g_date_time_new_from_timeval_utc (&tv);
+ }
+
+ /* g_time_val_from_iso8601() blows goats and won't
+ * accept a valid ISO8601 formatted date without a
+ * time value - try and parse this case */
+ if (sscanf (iso_date, "%u-%u-%u", &dmy[0], &dmy[1], &dmy[2]) != 3)
+ return NULL;
+
+ /* create valid object */
+ return g_date_time_new_utc (dmy[0], dmy[1], dmy[2], 0, 0, 0);
+}