2011-09-25 08:56:03 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Widgets
|
2012-01-31 11:17:35 +00:00
|
|
|
* Description: Allow to embed info from friendica into another site
|
2011-09-25 08:56:03 +00:00
|
|
|
* Version: 1.0
|
|
|
|
* Author: Fabio Comuni <http://kirgroup.com/profile/fabrix/>
|
2018-08-20 04:24:43 +00:00
|
|
|
* Status: Unsupported
|
2011-09-25 08:56:03 +00:00
|
|
|
*/
|
2018-07-21 13:13:02 +00:00
|
|
|
|
2018-12-26 07:28:16 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-01-22 19:03:11 +00:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 23:40:18 +00:00
|
|
|
use Friendica\Core\Logger;
|
2017-11-06 23:55:24 +00:00
|
|
|
use Friendica\Core\PConfig;
|
2018-10-31 14:55:15 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-21 13:13:02 +00:00
|
|
|
use Friendica\Database\DBA;
|
2017-11-06 23:55:24 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
function widgets_install() {
|
2018-12-26 07:28:16 +00:00
|
|
|
Hook::register('addon_settings', 'addon/widgets/widgets.php', 'widgets_settings');
|
|
|
|
Hook::register('addon_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post');
|
2018-10-29 23:40:18 +00:00
|
|
|
Logger::log("installed widgets");
|
2011-09-25 08:56:03 +00:00
|
|
|
}
|
2018-07-21 13:13:02 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
function widgets_uninstall() {
|
2018-12-26 07:28:16 +00:00
|
|
|
Hook::unregister('addon_settings', 'addon/widgets/widgets.php', 'widgets_settings');
|
|
|
|
Hook::unregister('addon_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post');
|
2011-09-25 08:56:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function widgets_settings_post(){
|
2012-03-12 14:08:41 +00:00
|
|
|
if(! local_user())
|
|
|
|
return;
|
2011-09-25 08:56:03 +00:00
|
|
|
if (isset($_POST['widgets-submit'])){
|
2017-11-11 06:23:31 +00:00
|
|
|
PConfig::delete(local_user(), 'widgets', 'key');
|
2018-01-15 13:15:33 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function widgets_settings(&$a,&$o) {
|
|
|
|
if(! local_user())
|
2018-01-15 13:15:33 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
2017-11-06 23:55:24 +00:00
|
|
|
$key = PConfig::get(local_user(), 'widgets', 'key' );
|
|
|
|
if ($key=='') { $key = mt_rand(); PConfig::set(local_user(), 'widgets', 'key', $key); }
|
2011-09-25 08:56:03 +00:00
|
|
|
|
2018-01-15 13:15:33 +00:00
|
|
|
$widgets = [];
|
2011-09-25 08:56:03 +00:00
|
|
|
$d = dir(dirname(__file__));
|
|
|
|
while(false !== ($f = $d->read())) {
|
|
|
|
if(substr($f,0,7)=="widget_") {
|
|
|
|
preg_match("|widget_([^.]+).php|", $f, $m);
|
|
|
|
$w=$m[1];
|
2011-10-18 15:18:58 +00:00
|
|
|
if ($w!=""){
|
|
|
|
require_once($f);
|
2018-01-15 13:15:33 +00:00
|
|
|
$widgets[] = [$w, call_user_func($w."_widget_name")];
|
2011-10-18 15:18:58 +00:00
|
|
|
}
|
2011-09-25 08:56:03 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 13:15:33 +00:00
|
|
|
|
|
|
|
|
2012-12-22 20:36:35 +00:00
|
|
|
# $t = file_get_contents( dirname(__file__). "/settings.tpl" );
|
2018-10-31 14:55:15 +00:00
|
|
|
$t = Renderer::getMarkupTemplate("settings.tpl", "addon/widgets/");
|
|
|
|
$o .= Renderer::replaceMacros($t, [
|
2018-01-22 19:03:11 +00:00
|
|
|
'$submit' => L10n::t('Generate new key'),
|
2018-10-09 18:13:22 +00:00
|
|
|
'$baseurl' => $a->getBaseURL(),
|
2011-09-25 08:56:03 +00:00
|
|
|
'$title' => "Widgets",
|
2018-01-22 19:03:11 +00:00
|
|
|
'$label' => L10n::t('Widgets key'),
|
2011-09-25 08:56:03 +00:00
|
|
|
'$key' => $key,
|
2018-01-22 19:03:11 +00:00
|
|
|
'$widgets_h' => L10n::t('Widgets available'),
|
2011-09-25 08:56:03 +00:00
|
|
|
'$widgets' => $widgets,
|
2018-01-15 13:15:33 +00:00
|
|
|
]);
|
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function widgets_module() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _abs_url($s){
|
2018-12-28 02:03:17 +00:00
|
|
|
$a = \get_app();
|
2018-10-09 18:13:22 +00:00
|
|
|
return preg_replace("|href=(['\"])([^h][^t][^t][^p])|", "href=\$1".$a->getBaseURL()."/\$2", $s);
|
2011-09-25 08:56:03 +00:00
|
|
|
}
|
|
|
|
|
2011-10-19 09:43:45 +00:00
|
|
|
function _randomAlphaNum($length){
|
|
|
|
return substr(str_shuffle(str_repeat('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',$length)),0,$length);
|
2018-01-15 13:15:33 +00:00
|
|
|
}
|
2011-10-19 09:43:45 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
|
|
|
|
function widgets_content(&$a) {
|
|
|
|
|
|
|
|
if (!isset($_GET['k'])) {
|
2018-12-26 05:39:53 +00:00
|
|
|
if($a->argv[2]=="cb"){header('HTTP/1.0 400 Bad Request'); exit();}
|
2011-09-25 08:56:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM pconfig WHERE uid IN (SELECT uid FROM pconfig WHERE v='%s')AND cat='widgets'",
|
2018-07-21 13:13:02 +00:00
|
|
|
DBA::escape($_GET['k'])
|
2011-09-25 08:56:03 +00:00
|
|
|
);
|
|
|
|
if (!count($r)){
|
2018-12-26 05:39:53 +00:00
|
|
|
if($a->argv[2]=="cb"){header('HTTP/1.0 400 Bad Request'); exit();}
|
2011-09-25 08:56:03 +00:00
|
|
|
return;
|
2018-01-15 13:15:33 +00:00
|
|
|
}
|
|
|
|
$conf = [];
|
2011-09-25 08:56:03 +00:00
|
|
|
$conf['uid'] = $r[0]['uid'];
|
|
|
|
foreach($r as $e) { $conf[$e['k']]=$e['v']; }
|
2018-01-15 13:15:33 +00:00
|
|
|
|
|
|
|
$o = "";
|
2011-09-25 08:56:03 +00:00
|
|
|
|
|
|
|
$widgetfile =dirname(__file__)."/widget_".$a->argv[1].".php";
|
|
|
|
if (file_exists($widgetfile)){
|
|
|
|
require_once($widgetfile);
|
|
|
|
} else {
|
2018-12-26 05:39:53 +00:00
|
|
|
if($a->argv[2]=="cb"){header('HTTP/1.0 400 Bad Request'); exit();}
|
2011-09-25 08:56:03 +00:00
|
|
|
return;
|
2018-01-15 13:15:33 +00:00
|
|
|
}
|
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//echo "<pre>"; var_dump($a->argv); die();
|
|
|
|
if ($a->argv[2]=="cb"){
|
2011-10-19 09:43:45 +00:00
|
|
|
/*header('Access-Control-Allow-Origin: *');*/
|
2011-09-25 08:56:03 +00:00
|
|
|
$o .= call_user_func($a->argv[1].'_widget_content',$a, $conf);
|
2018-01-15 13:15:33 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
} else {
|
|
|
|
|
2018-01-15 13:15:33 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
if (isset($_GET['p']) && local_user()==$conf['uid'] ) {
|
|
|
|
$o .= "<style>.f9k_widget { float: left;border:1px solid black; }</style>";
|
|
|
|
$o .= "<h1>Preview Widget</h1>";
|
2018-10-09 18:13:22 +00:00
|
|
|
$o .= '<a href="'.$a->getBaseURL().'/settings/addon">'. L10n::t("Addon Settings") .'</a>';
|
2011-09-25 08:56:03 +00:00
|
|
|
|
|
|
|
$o .= "<h4>".call_user_func($a->argv[1].'_widget_name')."</h4>";
|
|
|
|
$o .= call_user_func($a->argv[1].'_widget_help');
|
|
|
|
$o .= "<br style='clear:left'/><br/>";
|
|
|
|
$o .= "<script>";
|
|
|
|
} else {
|
|
|
|
header("content-type: application/x-javascript");
|
|
|
|
}
|
2018-01-15 13:15:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-19 09:43:45 +00:00
|
|
|
$widget_size = call_user_func($a->argv[1].'_widget_size');
|
2018-01-15 13:15:33 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
$script = file_get_contents(dirname(__file__)."/widgets.js");
|
2018-10-31 14:55:15 +00:00
|
|
|
$o .= Renderer::replaceMacros($script, [
|
2018-10-09 18:13:22 +00:00
|
|
|
'$entrypoint' => $a->getBaseURL()."/widgets/".$a->argv[1]."/cb/",
|
2011-09-25 08:56:03 +00:00
|
|
|
'$key' => $conf['key'],
|
2011-10-19 09:43:45 +00:00
|
|
|
'$widget_id' => 'f9a_'.$a->argv[1]."_"._randomAlphaNum(6),
|
2018-10-09 18:13:22 +00:00
|
|
|
'$loader' => $a->getBaseURL()."/images/rotator.gif",
|
2011-09-25 08:56:03 +00:00
|
|
|
'$args' => (isset($_GET['a'])?$_GET['a']:''),
|
2011-10-19 09:43:45 +00:00
|
|
|
'$width' => $widget_size[0],
|
|
|
|
'$height' => $widget_size[1],
|
|
|
|
'$type' => $a->argv[1],
|
2018-01-15 13:15:33 +00:00
|
|
|
]);
|
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
|
|
|
|
if (isset($_GET['p'])) {
|
2011-10-18 15:18:58 +00:00
|
|
|
$wargs = call_user_func($a->argv[1].'_widget_args');
|
|
|
|
$jsargs = implode("</em>,<em>", $wargs);
|
2011-09-25 08:56:03 +00:00
|
|
|
if ($jsargs!='') $jsargs = "&a=<em>".$jsargs."</em>";
|
2018-01-15 13:15:33 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
$o .= "</script>
|
|
|
|
<br style='clear:left'/><br/>
|
|
|
|
<h4>Copy and paste this code</h4>
|
|
|
|
<code>"
|
2018-01-15 13:15:33 +00:00
|
|
|
|
2018-10-09 18:13:22 +00:00
|
|
|
.htmlspecialchars('<script src="'.$a->getBaseURL().'/widgets/'.$a->argv[1].'?k='.$conf['key'])
|
2011-09-25 08:56:03 +00:00
|
|
|
.$jsargs
|
|
|
|
.htmlspecialchars('"></script>')
|
|
|
|
."</code>";
|
2011-10-18 15:18:58 +00:00
|
|
|
|
2018-01-15 13:15:33 +00:00
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
return $o;
|
2018-01-15 13:15:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-25 08:56:03 +00:00
|
|
|
echo $o;
|
2018-12-26 05:39:53 +00:00
|
|
|
exit();
|
2011-09-25 08:56:03 +00:00
|
|
|
}
|