X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/7f046503b8b8dcec51c1f7752e87ba0ba0af0631..b7a5a70eb8d8f312325af828b47726977f4fbb79:/lookup.c?ds=sidebyside diff --git a/lookup.c b/lookup.c index c8582b1..5d638ea 100644 --- a/lookup.c +++ b/lookup.c @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: lookup.c,v 1.12 2003/10/15 21:15:21 noodles Exp $ + * $Id: lookup.c,v 1.15 2004/05/27 01:25:37 noodles Exp $ */ #include @@ -24,11 +24,13 @@ #include "mem.h" #include "onak-conf.h" #include "parsekey.h" +#include "photoid.h" #define OP_UNKNOWN 0 #define OP_GET 1 #define OP_INDEX 2 #define OP_VINDEX 3 +#define OP_PHOTO 4 void find_keys(char *search, uint64_t keyid, bool ishex, bool fingerprint, bool exact, bool verbose, bool mrhkp) @@ -73,6 +75,7 @@ int main(int argc, char *argv[]) char **params = NULL; int op = OP_UNKNOWN; int i; + int indx = 0; bool fingerprint = false; bool exact = false; bool ishex = false; @@ -93,6 +96,8 @@ int main(int argc, char *argv[]) op = OP_INDEX; } else if (!strcmp(params[i+1], "vindex")) { op = OP_VINDEX; + } else if (!strcmp(params[i+1], "photo")) { + op = OP_PHOTO; } } else if (!strcmp(params[i], "search")) { search = params[i+1]; @@ -105,6 +110,8 @@ int main(int argc, char *argv[]) ishex = true; } } + } else if (!strcmp(params[i], "idx")) { + indx = atoi(params[i+1]); } else if (!strcmp(params[i], "fingerprint")) { if (!strcmp(params[i+1], "on")) { fingerprint = true; @@ -137,6 +144,8 @@ int main(int argc, char *argv[]) if (mrhkp) { puts("Content-Type: text/plain\n"); + } else if (op == OP_PHOTO) { + puts("Content-Type: image/jpeg\n"); } else { start_html("Lookup of key"); } @@ -148,9 +157,11 @@ int main(int argc, char *argv[]) } else { readconfig(NULL); initlogthing("lookup", config.logfile); - initdb(); + initdb(true); switch (op) { case OP_GET: + logthing(LOGTHING_NOTICE, "Getting keyid %llX", + keyid); if (fetch_key(keyid, &publickey, false)) { puts("
");
 				flatten_publickey(publickey,
@@ -172,6 +183,20 @@ int main(int argc, char *argv[])
 			find_keys(search, keyid, ishex, fingerprint, exact,
 					true, mrhkp);
 			break;
+		case OP_PHOTO:
+			if (fetch_key(keyid, &publickey, false)) {
+				struct openpgp_packet *photo = NULL;
+				photo = getphoto(publickey, 0);
+				if (photo != NULL) {
+					fwrite(photo->data+19,
+							1,
+							(photo->length - 19),
+							stdout);
+				}
+				free_publickey(publickey);
+				publickey = NULL;
+			}
+			break;
 		default:
 			puts("Unknown operation!");
 		}