mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-20 21:53:12 +00:00
rhizome direct http manifest-less file import now uses the name
supplied in the HTTP POST form. #9
This commit is contained in:
parent
dc3137707f
commit
636cba8363
@ -241,17 +241,17 @@ int rhizome_direct_form_received(rhizome_http_request *r)
|
|||||||
rhizome_manifest_set_ll(m, "date", (long long) gettime_ms());
|
rhizome_manifest_set_ll(m, "date", (long long) gettime_ms());
|
||||||
if (debug & DEBUG_RHIZOME) DEBUGF("missing 'date', set default date=%s", rhizome_manifest_get(m, "date", NULL, 0));
|
if (debug & DEBUG_RHIZOME) DEBUGF("missing 'date', set default date=%s", rhizome_manifest_get(m, "date", NULL, 0));
|
||||||
}
|
}
|
||||||
if (strcasecmp(RHIZOME_SERVICE_FILE, service) == 0) {
|
|
||||||
const char *name = rhizome_manifest_get(m, "name", NULL, 0);
|
const char *name = rhizome_manifest_get(m, "name", NULL, 0);
|
||||||
if (name == NULL) {
|
if (name == NULL) {
|
||||||
name = strrchr(filepath, '/');
|
name=r->data_file_name;
|
||||||
name = name ? name + 1 : filepath;
|
rhizome_manifest_set(m, "name", r->data_file_name);
|
||||||
rhizome_manifest_set(m, "name", name);
|
if (debug & DEBUG_RHIZOME) DEBUGF("missing 'name', set name=\"%s\" from HTTP post field filename specification", name);
|
||||||
if (debug & DEBUG_RHIZOME) DEBUGF("missing 'name', set default name=\"%s\"", name);
|
} else {
|
||||||
} else {
|
if (debug & DEBUG_RHIZOME) DEBUGF("manifest contains name=\"%s\"", name);
|
||||||
if (debug & DEBUG_RHIZOME) DEBUGF("manifest contains name=\"%s\"", name);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
DEBUGF("File name = '%s'",name);
|
||||||
|
|
||||||
const char *senderhex = rhizome_manifest_get(m, "sender", NULL, 0);
|
const char *senderhex = rhizome_manifest_get(m, "sender", NULL, 0);
|
||||||
unsigned char authorSid[SID_SIZE];
|
unsigned char authorSid[SID_SIZE];
|
||||||
if (senderhex) fromhexstr(authorSid,senderhex,SID_SIZE);
|
if (senderhex) fromhexstr(authorSid,senderhex,SID_SIZE);
|
||||||
|
@ -278,6 +278,7 @@ void rhizome_server_poll(struct sched_ent *alarm)
|
|||||||
if (peerip) request->requestor=*peerip;
|
if (peerip) request->requestor=*peerip;
|
||||||
else bzero(&request->requestor,sizeof(request->requestor));
|
else bzero(&request->requestor,sizeof(request->requestor));
|
||||||
DEBUGF("accepted connection from %s",inet_ntoa(request->requestor.sin_addr));
|
DEBUGF("accepted connection from %s",inet_ntoa(request->requestor.sin_addr));
|
||||||
|
request->data_file_name[0]=0;
|
||||||
|
|
||||||
/* We are now trying to read the HTTP request */
|
/* We are now trying to read the HTTP request */
|
||||||
request->request_type=RHIZOME_HTTP_REQUEST_RECEIVING;
|
request->request_type=RHIZOME_HTTP_REQUEST_RECEIVING;
|
||||||
|
Loading…
Reference in New Issue
Block a user