2015-07-11 16:55:00 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud - Weather
|
|
|
|
*
|
|
|
|
* 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 2015
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Weather\Controller;
|
|
|
|
|
|
|
|
use \OCP\IRequest;
|
|
|
|
use \OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
use \OCP\AppFramework\Controller;
|
|
|
|
use \OCP\AppFramework\Http\JSONResponse;
|
|
|
|
use \OCP\AppFramework\Http;
|
|
|
|
|
|
|
|
use \OCA\Weather\Db\CityMapper;
|
|
|
|
|
|
|
|
class WeatherController extends Controller {
|
|
|
|
|
|
|
|
private $userId;
|
|
|
|
private $mapper;
|
|
|
|
|
|
|
|
public function __construct ($appName, IRequest $request, $userId, CityMapper $mapper) {
|
|
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->userId = $userId;
|
|
|
|
$this->mapper = $mapper;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*/
|
|
|
|
public function get($name) {
|
|
|
|
$cityInfos = $this->getCityInformations($name);
|
|
|
|
if (!$cityInfos) {
|
|
|
|
return new JSONResponse(array(), Http::STATUS_NOT_FOUND);
|
|
|
|
}
|
|
|
|
return new JSONResponse($cityInfos);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getCityInformations ($name) {
|
|
|
|
// @TODO setting for metric
|
|
|
|
$cityDatas = json_decode(file_get_contents("http://api.openweathermap.org/data/2.5/weather?q=$name&mode=json&units=metric"), true);
|
|
|
|
if ($cityDatas['cod'] != '200') {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-07-15 19:38:29 +00:00
|
|
|
$cityDatas["forecast"] = array();
|
|
|
|
$forecast = json_decode(file_get_contents("http://api.openweathermap.org/data/2.5/forecast?q=$name&mode=json&units=metric"), true);
|
|
|
|
if ($forecast['cod'] == '200' && isset($forecast['cnt']) && is_numeric($forecast['cnt'])) {
|
|
|
|
// Show only 8 values max
|
|
|
|
// @TODO: setting ?
|
|
|
|
$maxFC = $forecast['cnt'] > 8 ? 8 : $forecast['cnt'];
|
|
|
|
for ($i = 0; $i < $maxFC; $i++) {
|
|
|
|
$cityDatas['forecast'][] = array(
|
|
|
|
'hour' => $forecast['list'][$i]['dt'],
|
|
|
|
'weather' => $forecast['list'][$i]['weather'][0]['description'],
|
|
|
|
'temperature' => $forecast['list'][$i]['main']['temp'],
|
|
|
|
'pressure' => $forecast['list'][$i]['main']['pressure'],
|
|
|
|
'wind' => array(
|
|
|
|
'speed' => $forecast['list'][$i]['wind']['speed'],
|
|
|
|
'desc' => $this->windDegToString($forecast['list'][$i]['wind']['deg'])
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-11 16:55:00 +00:00
|
|
|
return $cityDatas;
|
|
|
|
}
|
2015-07-15 19:38:29 +00:00
|
|
|
|
|
|
|
private function windDegToString($deg) {
|
|
|
|
if ($deg > 0 && $deg < 23 ||
|
|
|
|
$deg > 333) {
|
|
|
|
return "North";
|
|
|
|
}
|
|
|
|
else if ($deg > 22 && $deg < 67) {
|
|
|
|
return "North-East";
|
|
|
|
}
|
|
|
|
else if ($deg > 66 && $deg < 113) {
|
|
|
|
return "East";
|
|
|
|
}
|
|
|
|
else if ($deg > 112 && $deg < 157) {
|
|
|
|
return "South-East";
|
|
|
|
}
|
|
|
|
else if ($deg > 156 && $deg < 201) {
|
|
|
|
return "South";
|
|
|
|
}
|
|
|
|
else if ($deg > 200 && $deg < 245) {
|
|
|
|
return "South-West";
|
|
|
|
}
|
|
|
|
else if ($deg > 244 && $deg < 289) {
|
|
|
|
return "West";
|
|
|
|
}
|
|
|
|
else if ($deg > 288 && $deg < 334) {
|
|
|
|
return "North-West";
|
|
|
|
}
|
|
|
|
}
|
2015-07-11 16:55:00 +00:00
|
|
|
};
|
|
|
|
?>
|