aboutsummarylogtreecommitdiffstats
path: root/lpins.c
diff options
context:
space:
mode:
Diffstat (limited to 'lpins.c')
-rw-r--r--lpins.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/lpins.c b/lpins.c
new file mode 100644
index 000000000000..1ffd998c386e
--- /dev/null
+++ b/lpins.c
@@ -0,0 +1,54 @@
+/*
+ Copyright (C) 2011 Giuseppe Borzi <gborzi@ieee.org>
+
+ This program 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.
+*/
+
+
+#include <gnome-keyring.h>
+
+gchar* cleanurl( const gchar *url )
+{
+ gchar *cleaned, *id;
+ gssize il = -1;
+ gsize lprt;
+ if ( ( id = g_strstr_len(url + 8,il,"/") ) != NULL )
+ {
+ lprt = id - url;
+ cleaned = g_strndup(url,lprt);
+ }
+ else
+ cleaned = g_strdup(url);
+ return cleaned;
+}
+
+int main( int argc, char **argv ) {
+
+ if ( argc < 4 ) {
+ g_print("Usage: %s url user password\n",argv[0]);
+ return 1;
+ }
+
+ if ( gnome_keyring_is_available() ) {
+ guint32 item_id; gchar *cleaned = cleanurl(argv[1]);
+ gnome_keyring_set_network_password_sync(NULL,
+ argv[2],
+ "midori",
+ cleaned,
+ NULL,
+ NULL,
+ NULL,
+ 0,
+ argv[3],
+ &item_id);
+ g_free(cleaned);
+ g_print("Created Gnome Keyring entry # %d\n",item_id);
+ } else {
+ g_print("Gnome Keyring not available!\n");
+ return 1;
+ }
+ return 0;
+}