X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=add.c;h=2c6abb93af54ba35aa13ecf223e35a54a0a61a38;hb=f5f103192a4105438bee90bbf85e7407f73b49ca;hp=323373b36232e82de391a7e8782493e866caf1bf;hpb=4b8483ae278577a3adc8d84da81d77019704466f;p=onak.git diff --git a/add.c b/add.c index 323373b..2c6abb9 100644 --- a/add.c +++ b/add.c @@ -4,6 +4,8 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: add.c,v 1.10 2003/06/04 20:57:06 noodles Exp $ */ #include @@ -12,35 +14,23 @@ #include #include "armor.h" +#include "charfuncs.h" #include "getcgi.h" #include "keydb.h" #include "keystructs.h" +#include "log.h" +#include "mem.h" +#include "merge.h" +#include "onak-conf.h" #include "parsekey.h" - -struct cgi_get_ctx { - char *buffer; - int offset; -}; - - -int cgi_getchar(void *ctx, unsigned char *c) -{ - struct cgi_get_ctx *buf = NULL; - - buf = (struct cgi_get_ctx *) ctx; - - *c = buf->buffer[buf->offset++]; - - return (*c == 0); -} +#include "sendsync.h" int main(int argc, char *argv[]) { struct openpgp_packet_list *packets = NULL; struct openpgp_publickey *keys = NULL; - struct openpgp_publickey *curkey = NULL; char **params = NULL; - struct cgi_get_ctx ctx; + struct buffer_ctx ctx; int i; memset(&ctx, 0, sizeof(ctx)); @@ -49,37 +39,45 @@ int main(int argc, char *argv[]) for (i = 0; params != NULL && params[i] != NULL; i += 2) { if (!strcmp(params[i], "keytext")) { ctx.buffer = params[i+1]; + ctx.size = strlen(ctx.buffer); + } else { + free(params[i+1]); } + params[i+1] = NULL; + free(params[i]); + params[i] = NULL; + } + if (params != NULL) { + free(params); + params = NULL; } -// puts("HTTP/1.0 200 OK"); -// puts("Server: onak 0.0.1"); - puts("Content-Type: text/html\n"); - puts("onak : Add"); + start_html("onak : Add"); if (ctx.buffer == NULL) { puts("Error: No keytext to add supplied."); } else { - dearmor_openpgp_stream(cgi_getchar, + readconfig(); + initlogthing("add", config.logfile); + dearmor_openpgp_stream(buffer_fetchchar, &ctx, &packets); if (packets != NULL) { parse_keys(packets, &keys); - curkey = keys; initdb(); - while (curkey != NULL) { - if (store_key(curkey)) { -// puts("Key added successfully."); - } else { - printf("Problem adding key '%s'.\n", strerror(errno)); - } - curkey = curkey->next; + printf("Got %d new keys.\n", + update_keys(&keys)); + if (keys != NULL) { + sendkeysync(keys); + free_publickey(keys); + keys = NULL; } cleanupdb(); - puts("Keys added."); } else { puts("No OpenPGP packets found in input."); } + cleanuplogthing(); + cleanupconfig(); } - puts(""); + end_html(); return (EXIT_SUCCESS); }