More work on widgets addon
This commit is contained in:
parent
9f05b71018
commit
55fd53ecbd
|
@ -1,28 +1,32 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
function widget_help(&$a, &$o, $conf) {
|
function friends_widget_name() {
|
||||||
$o .= "Shows profile contacts";
|
return "Shows profile contacts";
|
||||||
|
}
|
||||||
|
function friends_widget_help() {
|
||||||
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
function widget_args(){
|
function friends_widget_args(){
|
||||||
return Array();
|
return Array();
|
||||||
}
|
}
|
||||||
|
|
||||||
function widget_content(&$a, &$o, $conf){
|
function friends_widget_content(&$a, $conf){
|
||||||
|
|
||||||
$r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
|
$r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
|
||||||
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
||||||
WHERE `user`.`uid` = %s AND `profile`.`is-default` = 1 LIMIT 1",
|
WHERE `user`.`uid` = %s AND `profile`.`is-default` = 1 LIMIT 1",
|
||||||
intval($conf['uid'])
|
intval($conf['uid'])
|
||||||
);
|
);
|
||||||
|
|
||||||
if(!count($r)) return;
|
if(!count($r)) return;
|
||||||
$a->profile = $r[0];
|
$a->profile = $r[0];
|
||||||
|
|
||||||
|
$o = "";
|
||||||
$o .= "<style>
|
$o .= "<style>
|
||||||
.f9k_widget .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
|
.f9k_widget .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
|
||||||
.f9k_widget #contact-block-end { clear: left; }
|
.f9k_widget #contact-block-end { clear: left; }
|
||||||
</style>";
|
</style>";
|
||||||
$o .= _abs_url(contact_block());
|
$o .= _abs_url(contact_block());
|
||||||
$o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". t('Connect on Friendika!') ."</a>";
|
$o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". t('Connect on Friendika!') ."</a>";
|
||||||
|
return $o;
|
||||||
}
|
}
|
|
@ -1,13 +1,22 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
function widget_help(&$a, &$o, $conf) {
|
function like_widget_name() {
|
||||||
$o .= "<p>Shows likes<br>Search ";
|
return "Shows likes";
|
||||||
|
}
|
||||||
|
function like_widget_help() {
|
||||||
|
return "Search first item wich contains <em>KEY</em> and print like/dislike count";
|
||||||
}
|
}
|
||||||
|
|
||||||
function widget_args(){
|
function like_widget_args(){
|
||||||
return Array("KEY");
|
return Array("KEY");
|
||||||
}
|
}
|
||||||
|
|
||||||
function widget_content(&$a, &$o, $conf){
|
function like_widget_content(&$a, $conf){
|
||||||
$o .= " #TODO# ";
|
$args = explode(",",$_GET['a']);
|
||||||
|
|
||||||
|
if ($args[0]!=""){
|
||||||
|
return " #TODO like/dislike count for item with <em>" .$args[0]. "</em> # ";
|
||||||
|
} else {
|
||||||
|
return " #TODO# ";
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -2,10 +2,11 @@
|
||||||
* @author Fabio Comuni
|
* @author Fabio Comuni
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var f9a_widget = {
|
var f9a_widget_$widget_id = {
|
||||||
entrypoint : "$entrypoint",
|
entrypoint : "$entrypoint",
|
||||||
key : "$key",
|
key : "$key",
|
||||||
widgetid: "$widget_id",
|
widgetid: "$widget_id",
|
||||||
|
argstr: "$args",
|
||||||
xmlhttp : null,
|
xmlhttp : null,
|
||||||
|
|
||||||
getXHRObj : function(){
|
getXHRObj : function(){
|
||||||
|
@ -22,6 +23,7 @@ var f9a_widget = {
|
||||||
if (args===null) args = new Array();
|
if (args===null) args = new Array();
|
||||||
args['k']=this.key;
|
args['k']=this.key;
|
||||||
args['s']=window.location;
|
args['s']=window.location;
|
||||||
|
args['a']=this.argstr;
|
||||||
var urlencodedargs = new Array();
|
var urlencodedargs = new Array();
|
||||||
for(k in args){ urlencodedargs.push( encodeURIComponent(k)+"="+encodeURIComponent(args[k]) ); }
|
for(k in args){ urlencodedargs.push( encodeURIComponent(k)+"="+encodeURIComponent(args[k]) ); }
|
||||||
|
|
||||||
|
@ -29,20 +31,21 @@ var f9a_widget = {
|
||||||
|
|
||||||
this.xmlhttp.open("GET", url ,true);
|
this.xmlhttp.open("GET", url ,true);
|
||||||
this.xmlhttp.send();
|
this.xmlhttp.send();
|
||||||
|
this.xmlhttp.obj = this;
|
||||||
this.xmlhttp.onreadystatechange=function(){
|
this.xmlhttp.onreadystatechange=function(){
|
||||||
if (this.readyState==4){
|
if (this.readyState==4){
|
||||||
if (this.status==200) {
|
if (this.status==200) {
|
||||||
cb(this.responseText);
|
cb(this.obj, this.responseText);
|
||||||
} else {
|
} else {
|
||||||
document.getElementById(f9a_widget.widgetid).innerHTML="Error loading widget.";
|
document.getElementById(this.obj.widgetid).innerHTML="Error loading widget.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
requestcb: function(responseText) {
|
requestcb: function(obj, responseText) {
|
||||||
document.getElementById(f9a_widget.widgetid).innerHTML=responseText;
|
document.getElementById(obj.widgetid).innerHTML=responseText;
|
||||||
},
|
},
|
||||||
|
|
||||||
load : function (){
|
load : function (){
|
||||||
|
@ -53,7 +56,7 @@ var f9a_widget = {
|
||||||
};
|
};
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
f9a_widget.load();
|
f9a_widget_$widget_id.load();
|
||||||
})();
|
})();
|
||||||
|
|
||||||
document.writeln("<div id='$widget_id' class='f9k_widget'>");
|
document.writeln("<div id='$widget_id' class='f9k_widget'>");
|
||||||
|
|
|
@ -17,8 +17,8 @@ function widgets_install() {
|
||||||
function widgets_settings_post(){
|
function widgets_settings_post(){
|
||||||
|
|
||||||
if (isset($_POST['widgets-submit'])){
|
if (isset($_POST['widgets-submit'])){
|
||||||
set_pconfig(local_user(), 'widgets', 'site', $_POST['widgets-site']);
|
del_pconfig(local_user(), 'widgets', 'key');
|
||||||
set_pconfig(local_user(), 'widgets', 'key', $_POST['widgets-key']);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,40 +26,36 @@ function widgets_settings(&$a,&$o) {
|
||||||
if(! local_user())
|
if(! local_user())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
$key = get_pconfig(local_user(), 'widgets', 'key' );
|
$key = get_pconfig(local_user(), 'widgets', 'key' );
|
||||||
$site = get_pconfig(local_user(), 'widgets', 'site' );
|
if ($key=='') { $key = mt_rand(); set_pconfig(local_user(), 'widgets', 'key', $key); }
|
||||||
|
|
||||||
if ($key=='') $key = mt_rand();
|
$o .='<h3 class="settings-heading">Widgets</h3>';
|
||||||
|
|
||||||
$o .='
|
|
||||||
<h3 class="settings-heading">Widgets</h3>
|
$o.='
|
||||||
<div id="settings-username-wrapper">
|
<div id="settings-username-wrapper">
|
||||||
<label for="widgets-site" id="settings-username-label">'.t('Remote site: ').'</label>
|
'. t('Widgets key: ') .'<strong>'.$key.'</strong>
|
||||||
<input type="text" value="'.$site.'" id="settings-username" name="widgets-site">
|
|
||||||
</div>
|
</div>
|
||||||
<div id="settings-username-end"></div>
|
<div id="settings-username-end"></div>
|
||||||
<div id="settings-username-wrapper">
|
|
||||||
<label for="widgets-key" id="settings-username-label">'.t('Widgets key: ').'</label>
|
|
||||||
<input type="hidden" value="'.$key.'" id="settings-username" name="widgets-key">
|
|
||||||
<strong>'.$key.'</strong>
|
|
||||||
</div>
|
|
||||||
<div id="settings-username-end"></div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="settings-submit-wrapper">
|
<div class="settings-submit-wrapper">
|
||||||
<input type="submit" value="'.t('Submit').'" class="settings-submit" name="widgets-submit">
|
<input type="submit" value="'.t('Generate new key').'" class="settings-submit" name="widgets-submit">
|
||||||
</div>
|
</div>';
|
||||||
';
|
|
||||||
|
|
||||||
if ($key!='' and $site!='') {
|
|
||||||
$o.='<h4>Widgets:</h4>
|
$o.='<h4>Widgets:</h4>';
|
||||||
<ul>
|
$o .= '<ul>';
|
||||||
<li><a href="'.$a->get_baseurl().'/widgets/friends/?p=1&k='.$key.'">Friend list</a></li>
|
$d = dir(dirname(__file__));
|
||||||
<li><a href="'.$a->get_baseurl().'/widgets/like/?p=1&k='.$key.'">Likes count</a></li>
|
while(false !== ($f = $d->read())) {
|
||||||
</ul>
|
if(substr($f,0,7)=="widget_") {
|
||||||
';
|
preg_match("|widget_([^.]+).php|", $f, $m);
|
||||||
|
$w=$m[1];
|
||||||
|
require_once($f);
|
||||||
|
$o.='<li><a href="'.$a->get_baseurl().'/widgets/'.$w.'/?k='.$key.'&p=1">'. call_user_func($w."_widget_name") .'</a></li>';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$o .= '</ul>';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,14 +102,14 @@ function widgets_content(&$a) {
|
||||||
|
|
||||||
//echo "<pre>"; var_dump($a->argv); die();
|
//echo "<pre>"; var_dump($a->argv); die();
|
||||||
if ($a->argv[2]=="cb"){
|
if ($a->argv[2]=="cb"){
|
||||||
if (!local_user()){
|
/*if (!local_user()){
|
||||||
if (!isset($_GET['s']))
|
if (!isset($_GET['s']))
|
||||||
{header('HTTP/1.0 400 Bad Request'); killme();}
|
{header('HTTP/1.0 400 Bad Request'); killme();}
|
||||||
|
|
||||||
if (substr($_GET['s'],0,strlen($conf['site'])) !== $conf['site'])
|
if (substr($_GET['s'],0,strlen($conf['site'])) !== $conf['site'])
|
||||||
{header('HTTP/1.0 400 Bad Request'); killme();}
|
{header('HTTP/1.0 400 Bad Request'); killme();}
|
||||||
}
|
} */
|
||||||
widget_content($a, $o, $conf);
|
$o .= call_user_func($a->argv[1].'_widget_content',$a, $conf);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
@ -122,8 +118,9 @@ function widgets_content(&$a) {
|
||||||
$o .= "<style>.f9k_widget { float: left;border:1px solid black; }</style>";
|
$o .= "<style>.f9k_widget { float: left;border:1px solid black; }</style>";
|
||||||
$o .= "<h1>Preview Widget</h1>";
|
$o .= "<h1>Preview Widget</h1>";
|
||||||
$o .= '<a href="'.$a->get_baseurl().'/settings/addon">'. t("Plugin Settings") .'</a>';
|
$o .= '<a href="'.$a->get_baseurl().'/settings/addon">'. t("Plugin Settings") .'</a>';
|
||||||
$o .= "<br style='clear:left'/><br/>";
|
|
||||||
widget_help($a, $o, $conf);
|
$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 .= "<br style='clear:left'/><br/>";
|
||||||
$o .= "<script>";
|
$o .= "<script>";
|
||||||
} else {
|
} else {
|
||||||
|
@ -139,11 +136,12 @@ function widgets_content(&$a) {
|
||||||
'$key' => $conf['key'],
|
'$key' => $conf['key'],
|
||||||
'$widget_id' => 'f9k_'.$a->argv[1]."_".time(),
|
'$widget_id' => 'f9k_'.$a->argv[1]."_".time(),
|
||||||
'$loader' => $a->get_baseurl()."/images/rotator.gif",
|
'$loader' => $a->get_baseurl()."/images/rotator.gif",
|
||||||
|
'$args' => (isset($_GET['a'])?$_GET['a']:''),
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
||||||
if (isset($_GET['p'])) {
|
if (isset($_GET['p'])) {
|
||||||
$jsargs = implode("</em>,<em>", widget_args());
|
$jsargs = implode("</em>,<em>", call_user_func($a->argv[1].'_widget_args'));
|
||||||
if ($jsargs!='') $jsargs = "&a=<em>".$jsargs."</em>";
|
if ($jsargs!='') $jsargs = "&a=<em>".$jsargs."</em>";
|
||||||
|
|
||||||
$o .= "</script>
|
$o .= "</script>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user