2016-02-26 16:22:49 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/skiaserve/urlhandlers/UrlHandler.h"
|
2016-02-26 16:22:49 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/skiaserve/Request.h"
|
|
|
|
#include "tools/skiaserve/Response.h"
|
2016-12-20 21:48:59 +00:00
|
|
|
#include "microhttpd.h"
|
2016-02-26 16:22:49 +00:00
|
|
|
|
|
|
|
using namespace Response;
|
|
|
|
|
2016-12-20 21:48:59 +00:00
|
|
|
bool OpsHandler::canHandle(const char* method, const char* url) {
|
2016-12-21 20:40:26 +00:00
|
|
|
const char* kBasePath = "/ops";
|
2016-02-26 16:22:49 +00:00
|
|
|
return 0 == strncmp(url, kBasePath, strlen(kBasePath));
|
|
|
|
}
|
|
|
|
|
2016-12-20 21:48:59 +00:00
|
|
|
int OpsHandler::handle(Request* request, MHD_Connection* connection, const char* url,
|
|
|
|
const char* method, const char* upload_data, size_t* upload_data_size) {
|
2016-02-26 16:22:49 +00:00
|
|
|
SkTArray<SkString> commands;
|
|
|
|
SkStrSplit(url, "/", &commands);
|
|
|
|
|
|
|
|
if (!request->hasPicture() || commands.count() > 1) {
|
|
|
|
return MHD_NO;
|
|
|
|
}
|
|
|
|
|
2016-12-21 20:40:26 +00:00
|
|
|
// /ops
|
2016-02-26 16:22:49 +00:00
|
|
|
if (0 == strcmp(method, MHD_HTTP_METHOD_GET)) {
|
2019-12-13 18:51:14 +00:00
|
|
|
sk_sp<SkData> data(request->getJsonOpsTask());
|
2016-08-02 21:40:46 +00:00
|
|
|
return SendData(connection, data.get(), "application/json");
|
2016-02-26 16:22:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return MHD_NO;
|
|
|
|
}
|