ng-cordova
Version:
[ngCordova](http://ngcordova.com/) ==========
68 lines (54 loc) • 1.73 kB
JavaScript
// install : cordova plugin add https://github.com/EddyVerbruggen/cordova-plugin-googleplus.git
// link : https://github.com/EddyVerbruggen/cordova-plugin-googleplus
angular.module('ngCordova.plugins.googlePlus', [])
.factory('$cordovaGooglePlus', ['$q', '$window', function ($q, $window) {
return {
login: function (iosKey) {
var q = $q.defer();
if (iosKey === undefined) {
iosKey = {};
}
$window.plugins.googleplus.login({'iOSApiKey': iosKey}, function (response) {
q.resolve(response);
}, function (error) {
q.reject(error);
});
return q.promise;
},
silentLogin: function (iosKey) {
var q = $q.defer();
if (iosKey === undefined) {
iosKey = {};
}
$window.plugins.googleplus.trySilentLogin({'iOSApiKey': iosKey}, function (response) {
q.resolve(response);
}, function (error) {
q.reject(error);
});
return q.promise;
},
logout: function () {
var q = $q.defer();
$window.plugins.googleplus.logout(function (response) {
q.resolve(response);
});
},
disconnect: function () {
var q = $q.defer();
$window.plugins.googleplus.disconnect(function (response) {
q.resolve(response);
});
},
isAvailable: function () {
var q = $q.defer();
$window.plugins.googleplus.isAvailable(function (available) {
if (available) {
q.resolve(available);
} else {
q.reject(available);
}
});
return q.promise;
}
};
}]);