summaryrefslogtreecommitdiff
path: root/plugins/com.synconset.cordovaHTTP/www/cordovaHTTP.js
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-06-25 16:10:07 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-06-25 16:10:07 -0400
commit65e7255c868bed3bb950e7e36ab786934edc559f (patch)
tree085a58a4bc4a55111803dde9ab412dec9e9a8bb1 /plugins/com.synconset.cordovaHTTP/www/cordovaHTTP.js
parent855a0e8ddc273b58066530a1b55a946021dfc56e (diff)
https now works with self-signed certificates (needs provisioning though)
Diffstat (limited to 'plugins/com.synconset.cordovaHTTP/www/cordovaHTTP.js')
-rw-r--r--plugins/com.synconset.cordovaHTTP/www/cordovaHTTP.js131
1 files changed, 0 insertions, 131 deletions
diff --git a/plugins/com.synconset.cordovaHTTP/www/cordovaHTTP.js b/plugins/com.synconset.cordovaHTTP/www/cordovaHTTP.js
deleted file mode 100644
index ce238f13..00000000
--- a/plugins/com.synconset.cordovaHTTP/www/cordovaHTTP.js
+++ /dev/null
@@ -1,131 +0,0 @@
-/*global angular*/
-
-/*
- * An HTTP Plugin for PhoneGap.
- */
-
-var exec = require('cordova/exec');
-
-var http = {
- useBasicAuth: function(username, password, success, failure) {
- return exec(success, failure, "CordovaHttpPlugin", "useBasicAuth", [username, password]);
- },
- setHeader: function(header, value, success, failure) {
- return exec(success, failure, "CordovaHttpPlugin", "setHeader", [header, value]);
- },
- enableSSLPinning: function(enable, success, failure) {
- return exec(success, failure, "CordovaHttpPlugin", "enableSSLPinning", [enable]);
- },
- acceptAllCerts: function(allow, success, failure) {
- return exec(success, failure, "CordovaHttpPlugin", "acceptAllCerts", [allow]);
- },
- post: function(url, params, headers, success, failure) {
- return exec(success, failure, "CordovaHttpPlugin", "post", [url, params, headers]);
- },
- get: function(url, params, headers, success, failure) {
- return exec(success, failure, "CordovaHttpPlugin", "get", [url, params, headers]);
- },
- uploadFile: function(url, params, headers, filePath, name, success, failure) {
- return exec(success, failure, "CordovaHttpPlugin", "uploadFile", [url, params, headers, filePath, name]);
- },
- downloadFile: function(url, params, headers, filePath, success, failure) {
- /*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- *
- * Modified by Andrew Stephan for Sync OnSet
- *
- */
- var win = function(result) {
- var entry = new (require('org.apache.cordova.file.FileEntry'))();
- entry.isDirectory = false;
- entry.isFile = true;
- entry.name = result.file.name;
- entry.fullPath = result.file.fullPath;
- success(entry);
- };
- return exec(win, failure, "CordovaHttpPlugin", "downloadFile", [url, params, headers, filePath]);
- }
-};
-
-module.exports = http;
-
-if (typeof angular !== "undefined") {
- angular.module('cordovaHTTP', []).factory('cordovaHTTP', function($timeout, $q) {
- function makePromise(fn, args, async) {
- var deferred = $q.defer();
-
- var success = function(response) {
- if (async) {
- $timeout(function() {
- deferred.resolve(response);
- });
- } else {
- deferred.resolve(response);
- }
- };
-
- var fail = function(response) {
- if (async) {
- $timeout(function() {
- deferred.reject(response);
- });
- } else {
- deferred.reject(response);
- }
- };
-
- args.push(success);
- args.push(fail);
-
- fn.apply(http, args);
-
- return deferred.promise;
- }
-
- var cordovaHTTP = {
- useBasicAuth: function(username, password) {
- return makePromise(http.useBasicAuth, [username, password]);
- },
- setHeader: function(header, value) {
- return makePromise(http.setHeader, [header, value]);
- },
- enableSSLPinning: function(enable) {
- return makePromise(http.enableSSLPinning, [enable]);
- },
- acceptAllCerts: function(allow) {
- return makePromise(http.acceptAllCerts, [allow]);
- },
- post: function(url, params, headers) {
- return makePromise(http.post, [url, params, headers], true);
- },
- get: function(url, params, headers) {
- return makePromise(http.get, [url, params, headers], true);
- },
- uploadFile: function(url, params, headers, filePath, name) {
- return makePromise(http.uploadFile, [url, params, headers, filePath, name], true);
- },
- downloadFile: function(url, params, headers, filePath) {
- return makePromise(http.downloadFile, [url, params, headers, filePath], true);
- }
- };
- return cordovaHTTP;
- });
-} else {
- window.cordovaHTTP = http;
-}