X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=widgets%2Fwidgets.php;h=927d67463ca3e2a0481ebd1be9cfbcbab235ed58;hb=cbb915d9ad5924785fc29fa946fb3e14aabddcf3;hp=13c4f93bb255ec3cde2b9b93180db200bd682650;hpb=056921b1e8d64702535f03e238bc2e451ddca646;p=friendica-addons.git diff --git a/widgets/widgets.php b/widgets/widgets.php index 13c4f93b..927d6746 100644 --- a/widgets/widgets.php +++ b/widgets/widgets.php @@ -1,64 +1,75 @@ + * Status: Unsupported */ - - + +use Friendica\Core\Addon; +use Friendica\Core\L10n; +use Friendica\Core\Logger; +use Friendica\Core\PConfig; +use Friendica\Core\Renderer; +use Friendica\Database\DBA; + function widgets_install() { - register_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings'); - register_hook('plugin_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post'); - logger("installed widgets"); + Addon::registerHook('addon_settings', 'addon/widgets/widgets.php', 'widgets_settings'); + Addon::registerHook('addon_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post'); + Logger::log("installed widgets"); } + function widgets_uninstall() { - unregister_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings'); - unregister_hook('plugin_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post'); + Addon::unregisterHook('addon_settings', 'addon/widgets/widgets.php', 'widgets_settings'); + Addon::unregisterHook('addon_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post'); } - function widgets_settings_post(){ - + if(! local_user()) + return; if (isset($_POST['widgets-submit'])){ - del_pconfig(local_user(), 'widgets', 'key'); - + PConfig::delete(local_user(), 'widgets', 'key'); + } } function widgets_settings(&$a,&$o) { if(! local_user()) - return; - - - $key = get_pconfig(local_user(), 'widgets', 'key' ); - if ($key=='') { $key = mt_rand(); set_pconfig(local_user(), 'widgets', 'key', $key); } + return; + + + $key = PConfig::get(local_user(), 'widgets', 'key' ); + if ($key=='') { $key = mt_rand(); PConfig::set(local_user(), 'widgets', 'key', $key); } - $widgets = array(); + $widgets = []; $d = dir(dirname(__file__)); while(false !== ($f = $d->read())) { if(substr($f,0,7)=="widget_") { preg_match("|widget_([^.]+).php|", $f, $m); $w=$m[1]; - require_once($f); - $widgets[] = array($w, call_user_func($w."_widget_name")); + if ($w!=""){ + require_once($f); + $widgets[] = [$w, call_user_func($w."_widget_name")]; + } } } - - - $t = file_get_contents( dirname(__file__). "/settings.tpl" ); - $o .= replace_macros($t, array( - '$submit' => t('Generate new key'), - '$baseurl' => $a->get_baseurl(), + + +# $t = file_get_contents( dirname(__file__). "/settings.tpl" ); + $t = Renderer::getMarkupTemplate("settings.tpl", "addon/widgets/"); + $o .= Renderer::replaceMacros($t, [ + '$submit' => L10n::t('Generate new key'), + '$baseurl' => $a->getBaseURL(), '$title' => "Widgets", - '$label' => t('Widgets key'), + '$label' => L10n::t('Widgets key'), '$key' => $key, - '$widgets_h' => t('Widgets available'), + '$widgets_h' => L10n::t('Widgets available'), '$widgets' => $widgets, - )); - + ]); + } function widgets_module() { @@ -67,7 +78,11 @@ function widgets_module() { function _abs_url($s){ $a = get_app(); - return preg_replace("|href=(['\"])([^h][^t][^t][^p])|", "href=\$1".$a->get_baseurl()."/\$2", $s); + return preg_replace("|href=(['\"])([^h][^t][^t][^p])|", "href=\$1".$a->getBaseURL()."/\$2", $s); +} + +function _randomAlphaNum($length){ + return substr(str_shuffle(str_repeat('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',$length)),0,$length); } @@ -79,17 +94,17 @@ function widgets_content(&$a) { } $r = q("SELECT * FROM pconfig WHERE uid IN (SELECT uid FROM pconfig WHERE v='%s')AND cat='widgets'", - dbesc($_GET['k']) + DBA::escape($_GET['k']) ); if (!count($r)){ if($a->argv[2]=="cb"){header('HTTP/1.0 400 Bad Request'); killme();} return; - } - $conf = array(); + } + $conf = []; $conf['uid'] = $r[0]['uid']; foreach($r as $e) { $conf[$e['k']]=$e['v']; } - - $o = ""; + + $o = ""; $widgetfile =dirname(__file__)."/widget_".$a->argv[1].".php"; if (file_exists($widgetfile)){ @@ -97,29 +112,23 @@ function widgets_content(&$a) { } else { if($a->argv[2]=="cb"){header('HTTP/1.0 400 Bad Request'); killme();} return; - } - + } + //echo "
"; var_dump($a->argv); die();
 	if ($a->argv[2]=="cb"){
-		/*if (!local_user()){
-			if (!isset($_GET['s']))
-				{header('HTTP/1.0 400 Bad Request'); killme();}
-			
-			if (substr($_GET['s'],0,strlen($conf['site'])) !== $conf['site'])
-				{header('HTTP/1.0 400 Bad Request'); killme();}
-		} */
+		/*header('Access-Control-Allow-Origin: *');*/
 		$o .= call_user_func($a->argv[1].'_widget_content',$a, $conf);
-		
+
 	} else {
 
-		
+
 		if (isset($_GET['p']) && local_user()==$conf['uid'] ) {
 			$o .= "";
 			$o .= "

Preview Widget

"; - $o .= ''. t("Plugin Settings") .''; + $o .= ''. L10n::t("Addon Settings") .''; $o .= "

".call_user_func($a->argv[1].'_widget_name')."

"; $o .= call_user_func($a->argv[1].'_widget_help'); @@ -128,43 +137,44 @@ function widgets_content(&$a) { } else { header("content-type: application/x-javascript"); } - - - + + + $widget_size = call_user_func($a->argv[1].'_widget_size'); + $script = file_get_contents(dirname(__file__)."/widgets.js"); - $o .= replace_macros($script, array( - '$entrypoint' => $a->get_baseurl()."/widgets/".$a->argv[1]."/cb/", + $o .= Renderer::replaceMacros($script, [ + '$entrypoint' => $a->getBaseURL()."/widgets/".$a->argv[1]."/cb/", '$key' => $conf['key'], - '$widget_id' => 'f9k_'.$a->argv[1]."_".time(), - '$loader' => $a->get_baseurl()."/images/rotator.gif", + '$widget_id' => 'f9a_'.$a->argv[1]."_"._randomAlphaNum(6), + '$loader' => $a->getBaseURL()."/images/rotator.gif", '$args' => (isset($_GET['a'])?$_GET['a']:''), - )); + '$width' => $widget_size[0], + '$height' => $widget_size[1], + '$type' => $a->argv[1], + ]); + - if (isset($_GET['p'])) { - $jsargs = implode(",", call_user_func($a->argv[1].'_widget_args')); + $wargs = call_user_func($a->argv[1].'_widget_args'); + $jsargs = implode(",", $wargs); if ($jsargs!='') $jsargs = "&a=".$jsargs.""; - + $o .= "

Copy and paste this code

" - - .htmlspecialchars('') .""; + + return $o; - } - - } - + } + } + echo $o; killme(); } - - - - -?>