Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@
<settings>
<admin>OCA\Weather\Settings\AdminSettings</admin>
</settings>
<dashboard>
<widget>OCA\Weather\Widgets\DefaultWidget</widget>
</dashboard>
</info>
47 changes: 47 additions & 0 deletions css/widget.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
.icon-weather {
background-image: url('../img/app-dark.svg');
}
.icon-weather-light {
background-image: url('../img/app.svg');
}

.weatherWidgetContents {
margin: 0 44px;
}

.weatherWidgetContents h3.locationValue {
text-align: left;
}

.weatherWidgetContents .weatherWidgetList {
display: flex;
padding: 0;
flex-wrap: wrap;
}

.weatherWidgetContents .weatherWidgetList .measurement,
.weatherWidgetContents .weatherWidgetList .value {
flex: 1 1 50%;
text-align: left;
min-width: 80px;
}

.weatherWidgetContents .weatherWidgetList .measurement {
font-weight: bold;
}

.weatherWidgetContents .weaterWidgetList .measurement::after {
content:":";
}

.weatherWidgetContents .info {
position: absolute;
bottom: 11px;
left: 0;
margin: 22px;
}

.weatherWidgetContents .info.error {
color: red;
color: var(--color-error);
}
63 changes: 63 additions & 0 deletions img/app-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 78 additions & 0 deletions js/widget.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/**
*
* @copyright Copyright (c) 2019, Balint Erdosi (erdosib@gmail.com)
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

/** global: OCA */
/** global: net */

(function () {

/**
* @constructs Weather
*/
var Weather = function() {
}

Weather.prototype.divWeather = null;
Weather.prototype.init = function() {
this.getWeather();

}

Weather.prototype.getWeather = function() {
var request = {
widget: "weather",
request: "getWeather"
};

net.requestWidget(request, this.updateWeather);
}

Weather.prototype.updateWeather = function(result) {
var divWeather = document.querySelector("#widget-weather");
var divInfo = divWeather.querySelector(".info");
var temperatureRepresentationLookup = {
"kelvin": "°K",
"imperial":"°F",
"metric": "°C"
}
if (result.value.error) {
divInfo.classList.add("error");
divInfo.innerHTML = "Failed to update: " + result.value.error;
return;
}
try {
divInfo.classList.remove("error");
divInfo.innerHTML = "";
divWeather.querySelector(".locationValue").innerHTML = result.value.location;
divWeather.querySelector(".temperatureValue").innerHTML = result.value.temperature;
divWeather.querySelector(".temperatureRepresentation").innerHTML = temperatureRepresentationLookup[result.value.metric]|| "ERROR";
divWeather.querySelector(".weatherValue").innerHTML = result.value.weather;
divWeather.querySelector(".humidityValue").innerHTML = result.value.humidity;
divWeather.querySelector(".windValue").innerHTML = result.value.wind;
} catch (e) {
divInfo.classList.add("error");
divInfo.innerHTML = "Failed to update some data.";
}
}

OCA.DashBoard.Weather = Weather;
OCA.DashBoard.weather = new Weather();
})()
167 changes: 167 additions & 0 deletions lib/Widgets/DefaultWidget.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
<?php
/**
*
* @copyright Copyright (c) 2019, Balint Erdosi (erdosib@gmail.com)
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

namespace OCA\Weather\Widgets;

use \OCP\AppFramework\App;
use \OCP\AppFramework\Http;

use \OCP\IContainer;

use OCP\Dashboard\Model\WidgetSetup;
use OCP\Dashboard\Model\WidgetTemplate;
use OCP\Dashboard\IDashboardWidget;
use OCP\Dashboard\Model\IWidgetRequest;
use OCP\Dashboard\Model\IWidgetConfig;

use \OCA\Weather\AppInfo\Application;
use \OCA\Weather\Controller\WeatherController;

use \OCP\IL10N;
use \OCP\ILogger;

class DefaultWidget implements IDashboardWidget {

const WIDGET_ID = 'weather';


/** @var IL19N */
private $l10n;
private $logger;


/**
* DefaultWidget constructor
* @param IL10N $l10n
*/
public function __construct(ILogger $logger, IL10N $l10n) {
$this->l10n = $l10n;
$this->logger = $logger;
}

/**
* @return string
*/
public function getId(): string {
return self::WIDGET_ID;
}

/**
* @return string
*/
public function getName(): string {
return $this->l10n->t('Weather');
}

/**
* @return string
*/
public function getDescription(): string {
return $this->l10n->t('Watch the weather directly on your Nextcloud.');
}

/**
* @return WidgetTemplate
*/
public function getWidgetTemplate(): WidgetTemplate {
$template = new WidgetTemplate();
$template->addCss('widget')
->addJs('widget')
->setIcon('icon-weather')
->setContent('widget')
->setInitFunction('OCA.DashBoard.weather.getWeather');
return $template;
}

/**
* @return WidgetTemplate
*/
public function getWidgetSetup(): WidgetSetup {
$setup = new WidgetSetup();
$setup->addSize(WidgetSetup::SIZE_TYPE_MIN, 2, 1);
$setup->addSize(WidgetSetup::SIZE_TYPE_MAX, 4, 5);
$setup->addSize(WidgetSetup::SIZE_TYPE_DEFAULT, 2, 3);
$setup->addDelayedJob('OCA.DashBoard.weather.getWeather', 600);
return $setup;
}

/**
* @param IWidgetConfig $settings
*/
public function loadWidget(IWidgetConfig $settings) {

}

/**
* @param IWidgetRequest $request
*/
public function requestWidget(IWidgetRequest $request) {
if ($request->getRequest() === 'getWeather') {
$app = new Application();
$container = $app->getContainer();
$weatherController = $container->query('OCA\Weather\Controller\WeatherController');
$cityController = $container->query('OCA\Weather\Controller\CityController');
$settingsController = $container->query('OCA\Weather\Controller\SettingsController');

$allCities = json_decode($cityController->getAll()->render(), true);

if (count($allCities) == 0) {
$request->addResult('error', $this->l10n->t('Please make sure you select cities in the Weather app.'));
return;
}

$homeCityId = $allCities['home'];
$homeCityArray = array_filter(
$allCities['cities'],
function($city) use ($homeCityId) {
return $city['id'] === $homeCityId;
}
);

if (count($homeCityArray) != 1) {
$request->addResult('error', $this->l10n->t('Please make sure you select a home city in the Weather app.'));
return;
}

$homeCity = array_pop($homeCityArray)['name'];

$resultJSONResponse = $weatherController->get($homeCity);
if ($resultJSONResponse->getStatus() != Http::STATUS_OK) {
$request->addResult('error', $this->l10n->t('Failed to get city weather informations. Please contact your administrator'));
return;
}

$result = json_decode($resultJSONResponse->render(), true);
$metric = json_decode($settingsController->metricGet()->render(), true)['metric'];

$request->addResult('location', $homeCity);
$request->addResult('temperature', $result['main']['temp']);
$request->addResult('metric', $metric);
$request->addResult('weather', $result['weather'][0]['description']);
$request->addResult('humidity', $result['main']['humidity']);
$request->addResult('wind', $result['wind']['speed']);
}
}


}
?>
21 changes: 21 additions & 0 deletions templates/widget.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

?>

<div id="widget-weather" class="weatherWidgetContents">
<h3 class="locationValue"></h3>
<div class="info"><?php p($l->t('Updating widget…')); ?></div>
<dl class="weatherWidgetList">
<dt class="measurement"><?php p($l->t('Temperature')); ?></dt>
<dd class="value"><span class="temperatureValue"></span>&nbsp;<span class="temperatureRepresentation"></span></dd>

<dt class="measurement"><?php p($l->t('Cloudiness')); ?></dt>
<dd class="value"><span class="weatherValue"></span></dd>

<dt class="measurement"><?php p($l->t('Humidity')); ?></dt>
<dd class="value"><span class="humidityValue"></span>&nbsp;%</dd>

<dt class="measurement"><?php p($l->t('Wind')); ?></dt>
<dd class="value"><span class="windValue"></span>&nbsp;m/s</dd>
</dl>
</div>