2019-04-23 21:39:21 +00:00
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_API_ATOM_API_PROTOCOL_NS_H_
|
|
|
|
#define SHELL_BROWSER_API_ATOM_API_PROTOCOL_NS_H_
|
2019-04-23 21:39:21 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "content/public/browser/content_browser_client.h"
|
|
|
|
#include "native_mate/dictionary.h"
|
|
|
|
#include "native_mate/handle.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/trackable_object.h"
|
|
|
|
#include "shell/browser/net/atom_url_loader_factory.h"
|
2019-04-23 21:39:21 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2019-04-23 21:39:21 +00:00
|
|
|
|
|
|
|
class AtomBrowserContext;
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
// Possible errors.
|
2019-05-03 18:11:41 +00:00
|
|
|
enum class ProtocolError {
|
|
|
|
OK, // no error
|
|
|
|
REGISTERED,
|
|
|
|
NOT_REGISTERED,
|
|
|
|
INTERCEPTED,
|
|
|
|
NOT_INTERCEPTED,
|
2019-04-23 21:39:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Protocol implementation based on network services.
|
|
|
|
class ProtocolNS : public mate::TrackableObject<ProtocolNS> {
|
|
|
|
public:
|
|
|
|
static mate::Handle<ProtocolNS> Create(v8::Isolate* isolate,
|
|
|
|
AtomBrowserContext* browser_context);
|
|
|
|
|
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
|
|
|
|
|
|
|
// Used by AtomBrowserClient for creating URLLoaderFactory.
|
|
|
|
void RegisterURLLoaderFactories(
|
|
|
|
content::ContentBrowserClient::NonNetworkURLLoaderFactoryMap* factories);
|
|
|
|
|
2019-05-24 02:28:00 +00:00
|
|
|
const HandlersMap& intercept_handlers() const { return intercept_handlers_; }
|
|
|
|
|
2019-04-23 21:39:21 +00:00
|
|
|
private:
|
|
|
|
ProtocolNS(v8::Isolate* isolate, AtomBrowserContext* browser_context);
|
|
|
|
~ProtocolNS() override;
|
|
|
|
|
|
|
|
// Callback types.
|
2019-05-29 20:02:15 +00:00
|
|
|
using CompletionCallback =
|
|
|
|
base::RepeatingCallback<void(v8::Local<v8::Value>)>;
|
2019-04-23 21:39:21 +00:00
|
|
|
|
|
|
|
// JS APIs.
|
2019-04-29 02:37:45 +00:00
|
|
|
ProtocolError RegisterProtocol(ProtocolType type,
|
|
|
|
const std::string& scheme,
|
|
|
|
const ProtocolHandler& handler);
|
2019-04-23 21:39:21 +00:00
|
|
|
void UnregisterProtocol(const std::string& scheme, mate::Arguments* args);
|
|
|
|
bool IsProtocolRegistered(const std::string& scheme);
|
2019-05-24 02:28:00 +00:00
|
|
|
|
|
|
|
ProtocolError InterceptProtocol(ProtocolType type,
|
|
|
|
const std::string& scheme,
|
|
|
|
const ProtocolHandler& handler);
|
2019-05-07 02:33:05 +00:00
|
|
|
void UninterceptProtocol(const std::string& scheme, mate::Arguments* args);
|
2019-05-24 02:28:00 +00:00
|
|
|
bool IsProtocolIntercepted(const std::string& scheme);
|
2019-04-23 21:39:21 +00:00
|
|
|
|
|
|
|
// Old async version of IsProtocolRegistered.
|
2019-06-28 07:25:30 +00:00
|
|
|
v8::Local<v8::Promise> IsProtocolHandled(const std::string& scheme,
|
|
|
|
mate::Arguments* args);
|
2019-04-23 21:39:21 +00:00
|
|
|
|
2019-04-29 02:37:45 +00:00
|
|
|
// Helper for converting old registration APIs to new RegisterProtocol API.
|
|
|
|
template <ProtocolType type>
|
|
|
|
void RegisterProtocolFor(const std::string& scheme,
|
|
|
|
const ProtocolHandler& handler,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
HandleOptionalCallback(args, RegisterProtocol(type, scheme, handler));
|
|
|
|
}
|
2019-05-24 02:28:00 +00:00
|
|
|
template <ProtocolType type>
|
|
|
|
void InterceptProtocolFor(const std::string& scheme,
|
|
|
|
const ProtocolHandler& handler,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
HandleOptionalCallback(args, InterceptProtocol(type, scheme, handler));
|
|
|
|
}
|
2019-04-29 02:37:45 +00:00
|
|
|
|
2019-04-23 21:39:21 +00:00
|
|
|
// Be compatible with old interface, which accepts optional callback.
|
|
|
|
void HandleOptionalCallback(mate::Arguments* args, ProtocolError error);
|
|
|
|
|
2019-05-24 02:28:00 +00:00
|
|
|
HandlersMap handlers_;
|
|
|
|
HandlersMap intercept_handlers_;
|
2019-04-23 21:39:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2019-04-23 21:39:21 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_API_ATOM_API_PROTOCOL_NS_H_
|