Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0F6C41796C for ; Wed, 1 Oct 2014 23:53:59 +0000 (UTC) Received: (qmail 5270 invoked by uid 500); 1 Oct 2014 23:53:58 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 5156 invoked by uid 500); 1 Oct 2014 23:53:58 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 5142 invoked by uid 99); 1 Oct 2014 23:53:58 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Oct 2014 23:53:58 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 4F3209C3E66; Wed, 1 Oct 2014 23:53:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: steven@apache.org To: commits@cordova.apache.org Date: Wed, 01 Oct 2014 23:53:58 -0000 Message-Id: <302ccb51aa4f4b908c0ee64de313e242@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] spec commit: cordova-plugin-whitelist: add ubuntu support Repository: cordova-mobile-spec Updated Branches: refs/heads/master 3bf698ab1 -> 902e4207b cordova-plugin-whitelist: add ubuntu support Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/eccc2210 Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/eccc2210 Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/eccc2210 Branch: refs/heads/master Commit: eccc2210139a654ce45fd0414a5e39f92f39b254 Parents: a7af0cf Author: Maxim Ermilov Authored: Wed Oct 1 22:27:55 2014 +0400 Committer: Maxim Ermilov Committed: Wed Oct 1 22:27:55 2014 +0400 ---------------------------------------------------------------------- cordova-plugin-whitelist/plugin.xml | 6 +++ .../src/ubuntu/whitelist.cpp | 35 +++++++++++++++ cordova-plugin-whitelist/src/ubuntu/whitelist.h | 46 ++++++++++++++++++++ 3 files changed, 87 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/eccc2210/cordova-plugin-whitelist/plugin.xml ---------------------------------------------------------------------- diff --git a/cordova-plugin-whitelist/plugin.xml b/cordova-plugin-whitelist/plugin.xml index 71f49ae..49ea5fd 100644 --- a/cordova-plugin-whitelist/plugin.xml +++ b/cordova-plugin-whitelist/plugin.xml @@ -50,6 +50,12 @@ + + + + + + http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/eccc2210/cordova-plugin-whitelist/src/ubuntu/whitelist.cpp ---------------------------------------------------------------------- diff --git a/cordova-plugin-whitelist/src/ubuntu/whitelist.cpp b/cordova-plugin-whitelist/src/ubuntu/whitelist.cpp new file mode 100644 index 0000000..4d37a61 --- /dev/null +++ b/cordova-plugin-whitelist/src/ubuntu/whitelist.cpp @@ -0,0 +1,35 @@ +/* + * Copyright 2014 Canonical Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "whitelist.h" +#include + +Whitelist::Whitelist(Cordova *cordova): CPlugin(cordova) { +} + +void Whitelist::URLMatchesPatterns(int scId, int ecId, const QString &url, const QList &patterns) { + CordovaInternal::WhiteList whitelist; + for (const QString &pattern: patterns) { + whitelist.addWhiteListEntry(pattern, false); + } + bool isAllowed = whitelist.isUrlWhiteListed(url); + cb(scId, isAllowed); +} + +void Whitelist::URLIsAllowed(int scId, int ecId, const QString &url) { + bool isAllowed = m_cordova->config().whitelist().isUrlWhiteListed(url); + cb(scId, isAllowed); +} http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/eccc2210/cordova-plugin-whitelist/src/ubuntu/whitelist.h ---------------------------------------------------------------------- diff --git a/cordova-plugin-whitelist/src/ubuntu/whitelist.h b/cordova-plugin-whitelist/src/ubuntu/whitelist.h new file mode 100644 index 0000000..ecf2228 --- /dev/null +++ b/cordova-plugin-whitelist/src/ubuntu/whitelist.h @@ -0,0 +1,46 @@ +/* + * Copyright 2014 Canonical Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef WHITELIST_HKJBNNB90NM53452 +#define WHITELIST_HKJBNNB90NM53452 + +#include + +#include +#include + +class Whitelist: public CPlugin { + Q_OBJECT +public: + explicit Whitelist(Cordova *cordova); + + virtual const QString fullName() override { + return Whitelist::fullID(); + } + + virtual const QString shortName() override { + return Whitelist::fullID(); + } + + static const QString fullID() { + return "WhitelistAPI"; + } +public slots: + void URLMatchesPatterns(int scId, int ecId, const QString &url, const QList &patterns); + void URLIsAllowed(int scId, int ecId, const QString &url); +}; + +#endif