2015-07-08 21:29:55 +00:00
|
|
|
/**
|
2015-07-08 21:40:17 +00:00
|
|
|
* ownCloud - Weather
|
2015-07-08 21:29:55 +00:00
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later. See the COPYING file.
|
|
|
|
*
|
|
|
|
* @author Loic Blot <loic.blot@unix-experience.fr>
|
|
|
|
* @copyright Loic Blot 2014-2015
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
var app = angular.module('Weather', []);
|
|
|
|
|
2015-07-09 19:35:17 +00:00
|
|
|
var g_error500 = 'Fatal Error: please check your owncloud.log and send a bug report here: https://github.com/nerzhul/weather/issues';
|
2015-07-08 21:29:55 +00:00
|
|
|
|
|
|
|
function undef (obj) {
|
|
|
|
return typeof obj === undefined || obj === undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
function emptyStr (obj) {
|
|
|
|
return undef(obj) || obj == '';
|
|
|
|
}
|
|
|
|
|
|
|
|
app.controller('WeatherController', ['$scope', '$interval', '$timeout', '$compile', '$http',
|
|
|
|
function ($scope, $interval, $timeout, $compile, $http) {
|
|
|
|
$scope.userId = '';
|
|
|
|
$scope.cities = [];
|
|
|
|
$scope.selectedCityId = 0;
|
2015-07-08 22:05:57 +00:00
|
|
|
$scope.showAddCity = false;
|
|
|
|
$scope.addCityError = '';
|
2015-07-08 21:29:55 +00:00
|
|
|
|
2015-07-09 19:35:17 +00:00
|
|
|
$scope.cityLoadError = '';
|
|
|
|
|
2015-07-08 21:29:55 +00:00
|
|
|
$timeout(function () {
|
|
|
|
$scope.loadCities();
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.loadCities = function () {
|
2015-07-08 22:05:57 +00:00
|
|
|
$http.get(OC.generateUrl('/apps/weather/city/getall')).
|
2015-07-08 21:29:55 +00:00
|
|
|
success(function (data, status, headers, config) {
|
|
|
|
if (!undef(data['cities'])) {
|
|
|
|
$scope.cities = data['cities']
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!undef(data['userid'])) {
|
|
|
|
$scope.userId = data['userid'];
|
|
|
|
}
|
|
|
|
}).
|
|
|
|
fail(function (data, status, headers, config) {
|
|
|
|
$scope.fatalError();
|
|
|
|
});
|
|
|
|
};
|
2015-07-08 22:05:57 +00:00
|
|
|
|
2015-07-09 19:35:17 +00:00
|
|
|
$scope.loadCity = function(city) {
|
|
|
|
if (undef(city) || emptyStr(city.name)) {
|
|
|
|
alert(g_error500);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$http.get(OC.generateUrl('/apps/weather/weather/get'), {'name': city.name}).
|
|
|
|
success(function (data, status, headers, config) {
|
|
|
|
if (data != null && !undef(data['id'])) {
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$scope.cityLoadError = 'Failed to get city weather informations. Please contact your administrator';
|
|
|
|
}
|
|
|
|
}).
|
|
|
|
error(function (data, status, headers, config) {
|
|
|
|
if (status == 404) {
|
|
|
|
$scope.cityLoadError = "No city with this name found.";
|
|
|
|
}
|
|
|
|
else if (status == 500) {
|
|
|
|
$scope.cityLoadError = g_error500;
|
|
|
|
}
|
|
|
|
}).
|
|
|
|
fail(function (data, status, headers, config) {
|
|
|
|
$scope.cityLoadError = g_error500;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-07-08 22:05:57 +00:00
|
|
|
$scope.addCity = function(city) {
|
|
|
|
if (undef(city) || emptyStr(city.name)) {
|
|
|
|
$scope.addCityError = 'Empty city name !';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$http.post(OC.generateUrl('/apps/weather/city/add'), {'name': city.name}).
|
|
|
|
success(function (data, status, headers, config) {
|
|
|
|
if (data != null && !undef(data['id'])) {
|
2015-07-09 19:05:43 +00:00
|
|
|
$scope.cities.push({"name": city.name, "id": data['id']})
|
2015-07-08 22:05:57 +00:00
|
|
|
$scope.showAddCity = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$scope.addCityError = 'Failed to add city. Please contact your administrator';
|
|
|
|
}
|
|
|
|
}).
|
2015-07-09 19:35:17 +00:00
|
|
|
error(function (data, status, headers, config) {
|
|
|
|
if (status == 404) {
|
|
|
|
$scope.addCityError = "No city with this name found.";
|
|
|
|
}
|
|
|
|
else if (status == 409) {
|
|
|
|
$scope.addCityError = "This city is already registered for your account.";
|
|
|
|
}
|
|
|
|
}).
|
2015-07-08 22:05:57 +00:00
|
|
|
fail(function (data, status, headers, config) {
|
|
|
|
$scope.addCityError = g_error500;
|
|
|
|
});
|
|
|
|
};
|
2015-07-09 19:05:43 +00:00
|
|
|
|
|
|
|
$scope.deleteCity = function(city) {
|
|
|
|
if (undef(city)) {
|
|
|
|
alert(g_error500);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$http.post(OC.generateUrl('/apps/weather/city/delete'), {'id': city.id}).
|
|
|
|
success(function (data, status, headers, config) {
|
|
|
|
if (data != null && !undef(data['deleted'])) {
|
|
|
|
for (var i = 0; i < $scope.cities.length; i++) {
|
|
|
|
if ($scope.cities[i].id === city.id) {
|
|
|
|
$scope.cities.splice(i, 1);
|
|
|
|
// If current city is the removed city, close it
|
|
|
|
if ($scope.selectedCityId === city.id) {
|
|
|
|
$scope.selectedCityId = 0;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
alert('Failed to remove city. Please contact your administrator');
|
|
|
|
}
|
|
|
|
}).
|
|
|
|
fail(function (data, status, headers, config) {
|
|
|
|
alert(g_error500);
|
|
|
|
});
|
|
|
|
};
|
2015-07-08 21:40:17 +00:00
|
|
|
}
|
2015-07-08 21:29:55 +00:00
|
|
|
]);
|