2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-05-13 18:39:14 +00:00
|
|
|
|
2010-09-13 19:49:27 +00:00
|
|
|
#ifndef nsContentPermissionHelper_h
|
|
|
|
#define nsContentPermissionHelper_h
|
2010-05-13 18:39:14 +00:00
|
|
|
|
2010-09-10 04:59:51 +00:00
|
|
|
#include "nsIContentPermissionPrompt.h"
|
2014-02-09 20:34:40 +00:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsIMutableArray.h"
|
2014-08-01 07:22:20 +00:00
|
|
|
#include "mozilla/dom/PContentPermissionRequestChild.h"
|
2015-04-14 01:08:00 +00:00
|
|
|
#include "mozilla/dom/ipc/IdType.h"
|
|
|
|
#include "nsIDOMEventListener.h"
|
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
// Microsoft's API Name hackery sucks
|
|
|
|
// XXXbz Doing this in a header is a gigantic footgun. See
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=932421#c3 for why.
|
|
|
|
#undef LoadImage
|
2013-11-05 08:29:52 +00:00
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
class nsPIDOMWindowInner;
|
2013-12-10 06:03:21 +00:00
|
|
|
class nsContentPermissionRequestProxy;
|
2016-01-22 18:28:33 +00:00
|
|
|
class VisibilityChangeListener;
|
2013-12-06 22:38:52 +00:00
|
|
|
|
2014-02-09 20:34:40 +00:00
|
|
|
// Forward declare IPC::Principal here which is defined in
|
|
|
|
// PermissionMessageUtils.h. Include this file will transitively includes
|
|
|
|
// "windows.h" and it defines
|
|
|
|
// #define CreateEvent CreateEventW
|
|
|
|
// #define LoadImage LoadImageW
|
|
|
|
// That will mess up windows build.
|
|
|
|
namespace IPC {
|
|
|
|
class Principal;
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace IPC
|
2014-02-09 20:34:40 +00:00
|
|
|
|
2010-05-13 18:39:14 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-07-23 23:39:17 +00:00
|
|
|
class Element;
|
2014-02-09 20:34:40 +00:00
|
|
|
class PermissionRequest;
|
|
|
|
class ContentPermissionRequestParent;
|
|
|
|
class PContentPermissionRequestParent;
|
2013-07-23 23:39:17 +00:00
|
|
|
|
2014-02-09 20:34:40 +00:00
|
|
|
class ContentPermissionType : public nsIContentPermissionType
|
2010-05-13 18:39:14 +00:00
|
|
|
{
|
2014-02-09 20:34:40 +00:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONTYPE
|
2012-07-30 14:58:26 +00:00
|
|
|
|
2013-09-10 15:41:59 +00:00
|
|
|
ContentPermissionType(const nsACString& aType,
|
|
|
|
const nsTArray<nsString>& aOptions);
|
2013-10-16 22:25:50 +00:00
|
|
|
|
2014-02-09 20:34:40 +00:00
|
|
|
protected:
|
2014-06-23 19:56:07 +00:00
|
|
|
virtual ~ContentPermissionType();
|
|
|
|
|
2010-09-13 19:49:27 +00:00
|
|
|
nsCString mType;
|
2013-09-10 15:41:59 +00:00
|
|
|
nsTArray<nsString> mOptions;
|
2013-12-10 06:03:21 +00:00
|
|
|
};
|
2013-12-06 22:38:52 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
class nsContentPermissionUtils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static uint32_t
|
|
|
|
ConvertPermissionRequestToArray(nsTArray<PermissionRequest>& aSrcArray,
|
|
|
|
nsIMutableArray* aDesArray);
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
ConvertArrayToPermissionRequest(nsIArray* aSrcArray,
|
|
|
|
nsTArray<PermissionRequest>& aDesArray);
|
2014-02-09 20:34:40 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
static nsresult
|
|
|
|
CreatePermissionArray(const nsACString& aType,
|
|
|
|
const nsTArray<nsString>& aOptions,
|
|
|
|
nsIArray** aTypesArray);
|
|
|
|
|
|
|
|
static PContentPermissionRequestParent*
|
|
|
|
CreateContentPermissionRequestParent(const nsTArray<PermissionRequest>& aRequests,
|
2017-02-20 19:46:39 +00:00
|
|
|
Element* aElement,
|
|
|
|
const IPC::Principal& aPrincipal,
|
2018-11-20 01:52:47 +00:00
|
|
|
const IPC::Principal& aTopLevelPrincipal,
|
2017-02-20 19:46:39 +00:00
|
|
|
const bool aIsHandlingUserInput,
|
2015-04-14 01:08:00 +00:00
|
|
|
const TabId& aTabId);
|
2014-02-09 20:34:40 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
static nsresult
|
2017-07-06 12:00:35 +00:00
|
|
|
AskPermission(nsIContentPermissionRequest* aRequest,
|
2016-01-30 17:05:36 +00:00
|
|
|
nsPIDOMWindowInner* aWindow);
|
2015-04-14 01:08:00 +00:00
|
|
|
|
|
|
|
static nsTArray<PContentPermissionRequestParent*>
|
|
|
|
GetContentPermissionRequestParentById(const TabId& aTabId);
|
|
|
|
|
|
|
|
static void
|
|
|
|
NotifyRemoveContentPermissionRequestParent(PContentPermissionRequestParent* aParent);
|
2015-11-09 00:55:08 +00:00
|
|
|
|
|
|
|
static nsTArray<PContentPermissionRequestChild*>
|
|
|
|
GetContentPermissionRequestChildById(const TabId& aTabId);
|
|
|
|
|
|
|
|
static void
|
|
|
|
NotifyRemoveContentPermissionRequestChild(PContentPermissionRequestChild* aChild);
|
2015-04-14 01:08:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsContentPermissionRequester final : public nsIContentPermissionRequester
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONREQUESTER
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
explicit nsContentPermissionRequester(nsPIDOMWindowInner* aWindow);
|
2015-04-14 01:08:00 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~nsContentPermissionRequester();
|
|
|
|
|
2016-01-19 13:07:00 +00:00
|
|
|
nsWeakPtr mWindow;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<VisibilityChangeListener> mListener;
|
2014-08-01 07:22:20 +00:00
|
|
|
};
|
2014-02-09 20:34:40 +00:00
|
|
|
|
2018-11-20 14:40:42 +00:00
|
|
|
nsresult
|
|
|
|
TranslateChoices(JS::HandleValue aChoices,
|
|
|
|
const nsTArray<PermissionRequest>& aPermissionRequests,
|
|
|
|
nsTArray<PermissionChoice>& aTranslatedChoices);
|
|
|
|
|
2018-11-14 05:33:25 +00:00
|
|
|
class ContentPermissionRequestBase : public nsIContentPermissionRequest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(ContentPermissionRequestBase)
|
|
|
|
|
|
|
|
NS_IMETHOD GetTypes(nsIArray **aTypes) override;
|
|
|
|
NS_IMETHOD GetPrincipal(nsIPrincipal **aPrincipal) override;
|
2018-11-20 01:52:47 +00:00
|
|
|
NS_IMETHOD GetTopLevelPrincipal(nsIPrincipal **aTopLevelPrincipal) override;
|
2018-11-14 05:33:25 +00:00
|
|
|
NS_IMETHOD GetWindow(mozIDOMWindow **aWindow) override;
|
|
|
|
NS_IMETHOD GetElement(mozilla::dom::Element **aElement) override;
|
|
|
|
NS_IMETHOD GetIsHandlingUserInput(bool *aIsHandlingUserInput) override;
|
|
|
|
NS_IMETHOD GetRequester(nsIContentPermissionRequester **aRequester) override;
|
|
|
|
// Overrides for Allow() and Cancel() aren't provided by this class.
|
|
|
|
// That is the responsibility of the subclasses.
|
|
|
|
|
|
|
|
enum class PromptResult {
|
|
|
|
Granted,
|
|
|
|
Denied,
|
|
|
|
Pending,
|
|
|
|
};
|
|
|
|
nsresult ShowPrompt(PromptResult& aResult);
|
|
|
|
|
|
|
|
PromptResult CheckPromptPrefs();
|
|
|
|
|
|
|
|
enum class DelayedTaskType {
|
|
|
|
Allow,
|
|
|
|
Deny,
|
|
|
|
Request,
|
|
|
|
};
|
|
|
|
void RequestDelayedTask(nsIEventTarget* aTarget, DelayedTaskType aType);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ContentPermissionRequestBase(nsIPrincipal* aPrincipal, bool aIsHandlingUserInput,
|
|
|
|
nsPIDOMWindowInner* aWindow, const nsACString& aPrefName,
|
|
|
|
const nsACString& aType);
|
|
|
|
virtual ~ContentPermissionRequestBase() = default;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
2018-11-20 01:52:47 +00:00
|
|
|
nsCOMPtr<nsIPrincipal> mTopLevelPrincipal;
|
2018-11-14 05:33:25 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> mWindow;
|
|
|
|
nsCOMPtr<nsIContentPermissionRequester> mRequester;
|
|
|
|
nsCString mPrefName;
|
|
|
|
nsCString mType;
|
|
|
|
bool mIsHandlingUserInput;
|
|
|
|
};
|
|
|
|
|
2010-08-07 01:20:53 +00:00
|
|
|
} // namespace dom
|
2010-05-13 18:39:14 +00:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-04-14 01:08:00 +00:00
|
|
|
using mozilla::dom::ContentPermissionRequestParent;
|
|
|
|
|
2010-09-13 19:49:27 +00:00
|
|
|
class nsContentPermissionRequestProxy : public nsIContentPermissionRequest
|
2010-05-13 18:39:14 +00:00
|
|
|
{
|
2015-04-14 01:08:00 +00:00
|
|
|
public:
|
2014-02-09 20:34:40 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONREQUEST
|
|
|
|
|
2018-06-16 14:21:46 +00:00
|
|
|
explicit nsContentPermissionRequestProxy(ContentPermissionRequestParent* parent);
|
2012-07-30 14:58:26 +00:00
|
|
|
|
2018-06-16 14:21:46 +00:00
|
|
|
nsresult Init(const nsTArray<mozilla::dom::PermissionRequest>& requests);
|
2014-08-01 07:22:20 +00:00
|
|
|
|
2011-02-09 19:07:43 +00:00
|
|
|
void OnParentDestroyed();
|
2012-07-30 14:58:26 +00:00
|
|
|
|
2015-04-14 01:08:00 +00:00
|
|
|
void NotifyVisibility(const bool& aIsVisible);
|
|
|
|
|
|
|
|
private:
|
|
|
|
class nsContentPermissionRequesterProxy final : public nsIContentPermissionRequester {
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPERMISSIONREQUESTER
|
|
|
|
|
|
|
|
explicit nsContentPermissionRequesterProxy(ContentPermissionRequestParent* aParent)
|
|
|
|
: mParent(aParent)
|
|
|
|
, mWaitGettingResult(false) {}
|
|
|
|
|
|
|
|
void NotifyVisibilityResult(const bool& aIsVisible);
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~nsContentPermissionRequesterProxy() {}
|
|
|
|
|
|
|
|
ContentPermissionRequestParent* mParent;
|
|
|
|
bool mWaitGettingResult;
|
|
|
|
nsCOMPtr<nsIContentPermissionRequestCallback> mGetCallback;
|
|
|
|
nsCOMPtr<nsIContentPermissionRequestCallback> mOnChangeCallback;
|
|
|
|
};
|
|
|
|
|
2014-06-23 19:56:07 +00:00
|
|
|
virtual ~nsContentPermissionRequestProxy();
|
|
|
|
|
2010-09-13 19:49:27 +00:00
|
|
|
// Non-owning pointer to the ContentPermissionRequestParent object which owns this proxy.
|
2015-04-14 01:08:00 +00:00
|
|
|
ContentPermissionRequestParent* mParent;
|
2014-02-09 20:34:40 +00:00
|
|
|
nsTArray<mozilla::dom::PermissionRequest> mPermissionRequests;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsContentPermissionRequesterProxy> mRequester;
|
2010-05-13 18:39:14 +00:00
|
|
|
};
|
2013-12-10 06:03:21 +00:00
|
|
|
|
2014-07-08 04:45:23 +00:00
|
|
|
/**
|
|
|
|
* RemotePermissionRequest will send a prompt ipdl request to b2g process.
|
|
|
|
*/
|
2015-04-14 01:08:00 +00:00
|
|
|
class RemotePermissionRequest final : public nsIContentPermissionRequestCallback
|
2015-03-27 18:52:19 +00:00
|
|
|
, public mozilla::dom::PContentPermissionRequestChild
|
2014-07-08 04:45:23 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
2015-04-14 01:08:00 +00:00
|
|
|
NS_DECL_NSICONTENTPERMISSIONREQUESTCALLBACK
|
2014-07-08 04:45:23 +00:00
|
|
|
|
|
|
|
RemotePermissionRequest(nsIContentPermissionRequest* aRequest,
|
2016-01-30 17:05:36 +00:00
|
|
|
nsPIDOMWindowInner* aWindow);
|
2014-07-08 04:45:23 +00:00
|
|
|
|
|
|
|
// It will be called when prompt dismissed.
|
2016-11-15 03:26:00 +00:00
|
|
|
virtual mozilla::ipc::IPCResult RecvNotifyResult(const bool &aAllow,
|
|
|
|
InfallibleTArray<PermissionChoice>&& aChoices) override;
|
2014-07-08 04:45:23 +00:00
|
|
|
|
2016-11-15 03:26:00 +00:00
|
|
|
virtual mozilla::ipc::IPCResult RecvGetVisibility() override;
|
2015-04-14 01:08:00 +00:00
|
|
|
|
2014-08-01 07:22:20 +00:00
|
|
|
void IPDLAddRef()
|
|
|
|
{
|
|
|
|
mIPCOpen = true;
|
|
|
|
AddRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IPDLRelease()
|
|
|
|
{
|
|
|
|
mIPCOpen = false;
|
|
|
|
Release();
|
|
|
|
}
|
|
|
|
|
2015-11-09 00:55:08 +00:00
|
|
|
void Destroy();
|
|
|
|
|
|
|
|
bool IPCOpen() const { return mIPCOpen && !mDestroyed; }
|
|
|
|
|
2014-07-08 04:45:23 +00:00
|
|
|
private:
|
2016-01-22 18:28:33 +00:00
|
|
|
virtual ~RemotePermissionRequest();
|
2014-08-01 07:22:20 +00:00
|
|
|
|
|
|
|
void DoAllow(JS::HandleValue aChoices);
|
|
|
|
void DoCancel();
|
2014-07-08 04:45:23 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIContentPermissionRequest> mRequest;
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> mWindow;
|
2014-08-01 07:22:20 +00:00
|
|
|
bool mIPCOpen;
|
2015-11-09 00:55:08 +00:00
|
|
|
bool mDestroyed;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<VisibilityChangeListener> mListener;
|
2014-07-08 04:45:23 +00:00
|
|
|
};
|
|
|
|
|
2014-02-09 20:34:40 +00:00
|
|
|
#endif // nsContentPermissionHelper_h
|
2015-01-16 19:58:52 +00:00
|
|
|
|