* Jonathan McDowell <noodles@earth.li>
*
* Copyright 2002 Project Purple
- *
- * $Id: lookup.c,v 1.14 2004/05/26 18:53:14 noodles Exp $
*/
#include <inttypes.h>
#include "armor.h"
#include "charfuncs.h"
+#include "cleankey.h"
#include "getcgi.h"
#include "keydb.h"
#include "keyindex.h"
#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)
char **params = NULL;
int op = OP_UNKNOWN;
int i;
+ int indx = 0;
bool fingerprint = false;
bool exact = false;
bool ishex = false;
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];
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;
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");
}
initdb(true);
switch (op) {
case OP_GET:
- logthing(LOGTHING_NOTICE, "Getting keyid %llX",
+ logthing(LOGTHING_NOTICE, "Getting keyid 0x%llX",
keyid);
if (fetch_key(keyid, &publickey, false)) {
puts("<pre>");
+ cleankeys(publickey);
flatten_publickey(publickey,
&packets,
&list_end);
packets);
puts("</pre>");
} else {
+ logthing(LOGTHING_NOTICE,
+ "Failed to fetch key.");
puts("Key not found");
}
break;
find_keys(search, keyid, ishex, fingerprint, exact,
true, mrhkp);
break;
+ case OP_PHOTO:
+ if (fetch_key(keyid, &publickey, false)) {
+ unsigned char *photo = NULL;
+ size_t length = 0;
+
+ if (getphoto(publickey, 0, &photo, &length)) {
+ fwrite(photo,
+ 1,
+ length,
+ stdout);
+ }
+ free_publickey(publickey);
+ publickey = NULL;
+ }
+ break;
default:
puts("Unknown operation!");
}