2015-07-11 20:59:00 +02:00
< ? php
2013-02-11 18:49:19 +01:00
/**
* Name : Current Weather
2015-07-11 20:59:00 +02:00
* Description : Shows current weather conditions for user ' s location on their network page .
* Version : 1.1
2013-02-11 18:49:19 +01:00
* Author : Tony Baldwin < http :// friendica . tonybaldwin . info / u / t0ny >
* Author : Fabio Comuni < http :// kirkgroup . com / u / fabrixxm >
2015-07-11 20:59:00 +02:00
* Author : Tobias Diekershoff < https :// f . diekershoff . de / u / tobias >
2013-02-11 18:49:19 +01:00
*
*/
2015-07-11 20:59:00 +02:00
2015-07-13 16:21:43 +02:00
require_once ( 'include/network.php' );
2015-07-17 16:57:58 +02:00
require_once ( " mod/proxy.php " );
require_once ( 'include/text.php' );
2015-07-13 16:21:43 +02:00
2017-11-09 17:08:32 +01:00
use Friendica\Core\Cache ;
2017-11-07 00:55:24 +01:00
use Friendica\Core\Config ;
use Friendica\Core\PConfig ;
2015-07-13 16:21:43 +02:00
// get the weather data from OpenWeatherMap
2015-07-13 18:45:12 +02:00
function getWeather ( $loc , $units = 'metric' , $lang = 'en' , $appid = '' , $cachetime = 0 ) {
2015-07-13 16:21:43 +02:00
$url = " http://api.openweathermap.org/data/2.5/weather?q= " . $loc . " &appid= " . $appid . " &lang= " . $lang . " &units= " . $units . " &mode=xml " ;
2015-07-13 18:45:12 +02:00
$cached = Cache :: get ( 'curweather' . md5 ( $url ));
$now = new DateTime ();
if ( ! is_null ( $cached )) {
2017-11-07 00:55:24 +01:00
$cdate = PConfig :: get ( local_user (), 'curweather' , 'last' );
2015-07-13 18:45:12 +02:00
$cached = unserialize ( $cached );
if ( $cdate + $cachetime > $now -> getTimestamp ()) {
return $cached ;
}
}
2015-07-13 16:21:43 +02:00
try {
$res = new SimpleXMLElement ( fetch_url ( $url ));
} catch ( Exception $e ) {
info ( t ( 'Error fetching weather data.\nError was: ' . $e -> getMessage ()));
return false ;
}
if (( string ) $res -> temperature [ 'unit' ] === 'metric' ) {
$tunit = '°C' ;
$wunit = 'm/s' ;
} else {
$tunit = '°F' ;
$wunit = 'mph' ;
}
2015-07-15 13:15:02 +02:00
if ( trim (( string ) $res -> weather [ 'value' ]) == trim (( string ) $res -> clouds [ 'name' ]) ) {
$desc = ( string ) $res -> clouds [ 'name' ];
} else {
$desc = ( string ) $res -> weather [ 'value' ] . ', ' . ( string ) $res -> clouds [ 'name' ];
}
2015-07-13 18:45:12 +02:00
$r = array (
2015-07-13 16:21:43 +02:00
'city' => ( string ) $res -> city [ 'name' ][ 0 ],
'country' => ( string ) $res -> city -> country [ 0 ],
'lat' => ( string ) $res -> city -> coord [ 'lat' ],
'lon' => ( string ) $res -> city -> coord [ 'lon' ],
'temperature' => ( string ) $res -> temperature [ 'value' ][ 0 ] . $tunit ,
'pressure' => ( string ) $res -> pressure [ 'value' ] . ( string ) $res -> pressure [ 'unit' ],
'humidity' => ( string ) $res -> humidity [ 'value' ] . ( string ) $res -> humidity [ 'unit' ],
2015-07-15 13:15:02 +02:00
'descripion' => $desc ,
2015-07-13 16:21:43 +02:00
'wind' => ( string ) $res -> wind -> speed [ 'name' ] . ' (' . ( string ) $res -> wind -> speed [ 'value' ] . $wunit . ')' ,
2015-07-17 16:46:54 +02:00
'update' => ( string ) $res -> lastupdate [ 'value' ],
'icon' => ( string ) $res -> weather [ 'icon' ]
2015-07-13 16:21:43 +02:00
);
2017-11-07 00:55:24 +01:00
PConfig :: set ( local_user (), 'curweather' , 'last' , $now -> getTimestamp ());
2015-09-13 08:30:40 +02:00
Cache :: set ( 'curweather' . md5 ( $url ), serialize ( $r ), CACHE_HOUR );
2015-07-13 18:45:12 +02:00
return $r ;
2015-07-13 16:21:43 +02:00
}
2013-02-11 18:49:19 +01:00
function curweather_install () {
register_hook ( 'network_mod_init' , 'addon/curweather/curweather.php' , 'curweather_network_mod_init' );
register_hook ( 'plugin_settings' , 'addon/curweather/curweather.php' , 'curweather_plugin_settings' );
register_hook ( 'plugin_settings_post' , 'addon/curweather/curweather.php' , 'curweather_plugin_settings_post' );
}
function curweather_uninstall () {
unregister_hook ( 'network_mod_init' , 'addon/curweather/curweather.php' , 'curweather_network_mod_init' );
unregister_hook ( 'plugin_settings' , 'addon/curweather/curweather.php' , 'curweather_plugin_settings' );
unregister_hook ( 'plugin_settings_post' , 'addon/curweather/curweather.php' , 'curweather_plugin_settings_post' );
}
function curweather_network_mod_init ( & $fk_app , & $b ) {
2017-11-07 00:55:24 +01:00
if ( ! intval ( PConfig :: get ( local_user (), 'curweather' , 'curweather_enable' )))
2013-02-11 18:49:19 +01:00
return ;
$fk_app -> page [ 'htmlhead' ] .= '<link rel="stylesheet" type="text/css" href="' . $fk_app -> get_baseurl () . '/addon/curweather/curweather.css' . '" media="all" />' . " \r \n " ;
2015-07-15 13:15:02 +02:00
// $rpt value is needed for location
2015-07-12 08:18:24 +02:00
// $lang will be taken from the browser session to honour user settings
2015-07-15 13:15:02 +02:00
// TODO $lang does not work if the default settings are used
// and not all response strings are translated
2015-07-12 08:18:24 +02:00
// $units can be set in the settings by the user
// $appid is configured by the admin in the admin panel
// those parameters will be used to get: cloud status, temperature, preassure
// and relative humidity for display, also the relevent area of the map is
// linked from lat/log of the reply of OWMp
2017-11-07 00:55:24 +01:00
$rpt = PConfig :: get ( local_user (), 'curweather' , 'curweather_loc' );
2015-07-11 20:59:00 +02:00
// set the language to the browsers language and use metric units
$lang = $_SESSION [ 'language' ];
2017-11-07 00:55:24 +01:00
$units = PConfig :: get ( local_user (), 'curweather' , 'curweather_units' );
$appid = Config :: get ( 'curweather' , 'appid' );
$cachetime = intval ( Config :: get ( 'curweather' , 'cachetime' ));
2015-07-11 20:59:00 +02:00
if ( $units === " " )
$units = 'metric' ;
2015-07-13 11:22:51 +02:00
$ok = true ;
2015-07-13 18:45:12 +02:00
$res = getWeather ( $rpt , $units , $lang , $appid , $cachetime );
2015-07-13 16:21:43 +02:00
if ( $res === false )
2015-07-13 11:22:51 +02:00
$ok = false ;
2015-07-11 20:59:00 +02:00
2015-07-13 11:22:51 +02:00
if ( $ok ) {
$t = get_markup_template ( " widget.tpl " , " addon/curweather/ " );
$curweather = replace_macros ( $t , array (
'$title' => t ( " Current Weather " ),
2015-07-17 16:57:58 +02:00
'$icon' => proxy_url ( 'http://openweathermap.org/img/w/' . $res [ 'icon' ] . '.png' ),
2015-07-13 16:21:43 +02:00
'$city' => $res [ 'city' ],
'$lon' => $res [ 'lon' ],
'$lat' => $res [ 'lat' ],
'$description' => $res [ 'descripion' ],
'$temp' => $res [ 'temperature' ],
'$relhumidity' => array ( 'caption' => t ( 'Relative Humidity' ), 'val' => $res [ 'humidity' ]),
'$pressure' => array ( 'caption' => t ( 'Pressure' ), 'val' => $res [ 'pressure' ]),
'$wind' => array ( 'caption' => t ( 'Wind' ), 'val' => $res [ 'wind' ]),
2015-07-13 18:45:12 +02:00
'$lastupdate' => t ( 'Last Updated' ) . ': ' . $res [ 'update' ] . 'UTC' ,
2015-07-13 11:22:51 +02:00
'$databy' => t ( 'Data by' ),
'$showonmap' => t ( 'Show on map' )
));
} else {
$t = get_markup_template ( 'widget-error.tpl' , 'addon/curweather/' );
$curweather = replace_macros ( $t , array (
'$problem' => t ( 'There was a problem accessing the weather data. But have a look' ),
'$rpt' => $rpt ,
'$atOWM' => t ( 'at OpenWeatherMap' )
));
}
2013-02-11 18:49:19 +01:00
$fk_app -> page [ 'aside' ] = $curweather . $fk_app -> page [ 'aside' ];
}
function curweather_plugin_settings_post ( $a , $post ) {
if ( ! local_user () || ( ! x ( $_POST , 'curweather-settings-submit' )))
return ;
2017-11-07 00:55:24 +01:00
PConfig :: set ( local_user (), 'curweather' , 'curweather_loc' , trim ( $_POST [ 'curweather_loc' ]));
PConfig :: set ( local_user (), 'curweather' , 'curweather_enable' , intval ( $_POST [ 'curweather_enable' ]));
PConfig :: set ( local_user (), 'curweather' , 'curweather_units' , trim ( $_POST [ 'curweather_units' ]));
2013-02-11 18:49:19 +01:00
info ( t ( 'Current Weather settings updated.' ) . EOL );
}
function curweather_plugin_settings ( & $a , & $s ) {
if ( ! local_user ())
return ;
/* Get the current state of our config variable */
2017-11-07 00:55:24 +01:00
$curweather_loc = PConfig :: get ( local_user (), 'curweather' , 'curweather_loc' );
$curweather_units = PConfig :: get ( local_user (), 'curweather' , 'curweather_units' );
$appid = Config :: get ( 'curweather' , 'appid' );
2015-07-12 15:09:04 +02:00
if ( $appid == " " ) {
2016-09-24 08:03:51 +02:00
$noappidtext = t ( 'No APPID found, please contact your admin to obtain one.' );
2015-07-11 20:59:00 +02:00
} else {
$noappidtext = '' ;
}
2017-11-07 00:55:24 +01:00
$enable = intval ( PConfig :: get ( local_user (), 'curweather' , 'curweather_enable' ));
2013-02-11 18:49:19 +01:00
$enable_checked = (( $enable ) ? ' checked="checked" ' : '' );
2015-07-11 20:59:00 +02:00
// load template and replace the macros
$t = get_markup_template ( " settings.tpl " , " addon/curweather/ " );
$s = replace_macros ( $t , array (
'$submit' => t ( 'Save Settings' ),
2015-07-12 14:30:09 +02:00
'$header' => t ( 'Current Weather' ) . ' ' . t ( 'Settings' ),
2015-07-12 15:09:04 +02:00
'$noappidtext' => $noappidtext ,
2015-07-11 20:59:00 +02:00
'$info' => t ( 'Enter either the name of your location or the zip code.' ),
'$curweather_loc' => array ( 'curweather_loc' , t ( 'Your Location' ), $curweather_loc , t ( 'Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or <em>14476,DE</em>.' ) ),
2016-09-24 08:03:51 +02:00
'$curweather_units' => array ( 'curweather_units' , t ( 'Units' ), $curweather_units , t ( 'select if the temperature should be displayed in °C or °F' ), array ( 'metric' => '°C' , 'imperial' => '°F' )),
2015-07-11 20:59:00 +02:00
'$enabled' => array ( 'curweather_enable' , t ( 'Show weather data' ), $enable , '' )
));
return ;
2013-02-11 18:49:19 +01:00
}
2015-07-11 20:59:00 +02:00
// Config stuff for the admin panel to let the admin of the node set a APPID
// for accessing the API of openweathermap
function curweather_plugin_admin_post ( & $a ) {
if ( ! is_site_admin ())
return ;
if ( $_POST [ 'curweather-submit' ]) {
2017-11-07 00:55:24 +01:00
Config :: set ( 'curweather' , 'appid' , trim ( $_POST [ 'appid' ]));
Config :: set ( 'curweather' , 'cachetime' , trim ( $_POST [ 'cachetime' ]));
2015-07-11 20:59:00 +02:00
info ( t ( 'Curweather settings saved.' . EOL ));
}
}
function curweather_plugin_admin ( & $a , & $o ) {
if ( ! is_site_admin ())
return ;
2017-11-07 00:55:24 +01:00
$appid = Config :: get ( 'curweather' , 'appid' );
$cachetime = Config :: get ( 'curweather' , 'cachetime' );
2015-07-11 20:59:00 +02:00
$t = get_markup_template ( " admin.tpl " , " addon/curweather/ " );
$o = replace_macros ( $t , array (
'$submit' => t ( 'Save Settings' ),
2015-07-12 08:18:24 +02:00
'$cachetime' => array ( 'cachetime' , t ( 'Caching Interval' ), $cachetime , t ( 'For how long should the weather data be cached? Choose according your OpenWeatherMap account type.' ), array ( '0' => t ( 'no cache' ), '300' => '5 ' . t ( 'minutes' ), '900' => '15 ' . t ( 'minutes' ), '1800' => '30 ' . t ( 'minutes' ), '3600' => '60 ' . t ( 'minutes' ))),
2015-07-11 20:59:00 +02:00
'$appid' => array ( 'appid' , t ( 'Your APPID' ), $appid , t ( 'Your API key provided by OpenWeatherMap' ))
));
}