#include "App.h" #include #include "Utilities.h" using namespace v8; // du behver inte klona dessa // det finns bara en enda giltig request vid någon tid, och det är alltid // inom en callback // håll en färdig request och tillåt functioner endast när du är inom callbacken /* This one is the same for SSL and non-SSL */ struct HttpRequestWrapper { static Persistent reqTemplate; // todo: refuse all function calls if we are not inside correct callback static inline uWS::HttpRequest *getHttpRequest(const FunctionCallbackInfo &args) { return ((uWS::HttpRequest *) args.Holder()->GetAlignedPointerFromInternalField(0)); } /* Takes int, returns string (must be in bounds) */ static void req_getParameter(const FunctionCallbackInfo &args) { int index = args[0]->Uint32Value(); std::string_view parameter = getHttpRequest(args)->getParameter(index); args.GetReturnValue().Set(String::NewFromUtf8(isolate, parameter.data(), v8::String::kNormalString, parameter.length())); } /* Takes nothing, returns string */ static void req_getUrl(const FunctionCallbackInfo &args) { std::string_view url = getHttpRequest(args)->getUrl(); args.GetReturnValue().Set(String::NewFromUtf8(isolate, url.data(), v8::String::kNormalString, url.length())); } /* Takes String, returns String */ static void req_getHeader(const FunctionCallbackInfo &args) { NativeString data(args.GetIsolate(), args[0]); char *buf = data.getData(); int length = data.getLength(); std::string_view header = getHttpRequest(args)->getHeader(std::string_view(buf, length)); args.GetReturnValue().Set(String::NewFromUtf8(isolate, header.data(), v8::String::kNormalString, header.length())); } static void initReqTemplate() { /* We do clone every request object, we could share them, they are illegal to use outside the function anyways */ Local reqTemplateLocal = FunctionTemplate::New(isolate); reqTemplateLocal->SetClassName(String::NewFromUtf8(isolate, "uWS.HttpRequest")); reqTemplateLocal->InstanceTemplate()->SetInternalFieldCount(1); /* Register our functions */ reqTemplateLocal->PrototypeTemplate()->Set(String::NewFromUtf8(isolate, "getHeader"), FunctionTemplate::New(isolate, req_getHeader)); reqTemplateLocal->PrototypeTemplate()->Set(String::NewFromUtf8(isolate, "getParameter"), FunctionTemplate::New(isolate, req_getParameter)); reqTemplateLocal->PrototypeTemplate()->Set(String::NewFromUtf8(isolate, "getUrl"), FunctionTemplate::New(isolate, req_getUrl)); /* Create the template */ Local reqObjectLocal = reqTemplateLocal->GetFunction()->NewInstance(isolate->GetCurrentContext()).ToLocalChecked(); reqTemplate.Reset(isolate, reqObjectLocal); } static Local getReqInstance() { // if we attach a number that counts up to this req we can check if the number is still valid when calling functions? return Local::New(isolate, reqTemplate)->Clone(); } }; Persistent HttpRequestWrapper::reqTemplate;