]> git.mxchange.org Git - friendica-addons.git/blob - widgets/widgets.php
Friendika -> Friendica (widgets)
[friendica-addons.git] / widgets / widgets.php
1 <?php
2 /**
3  * Name: Widgets
4  * Description: Allow to embed info from friendica into another site
5  * Version: 1.0
6  * Author: Fabio Comuni <http://kirgroup.com/profile/fabrix/>
7  */
8  
9          
10 function widgets_install() {
11         register_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings'); 
12         register_hook('plugin_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post');
13         logger("installed widgets");
14 }
15 function widgets_uninstall() {
16         unregister_hook('plugin_settings', 'addon/widgets/widgets.php', 'widgets_settings'); 
17         unregister_hook('plugin_settings_post', 'addon/widgets/widgets.php', 'widgets_settings_post');
18 }
19
20
21 function widgets_settings_post(){
22         
23         if (isset($_POST['widgets-submit'])){
24                 del_pconfig(local_user(), 'widgets', 'key');
25                 
26         }
27 }
28
29 function widgets_settings(&$a,&$o) {
30     if(! local_user())
31                 return;         
32         
33         
34         $key = get_pconfig(local_user(), 'widgets', 'key' );
35         if ($key=='') { $key = mt_rand(); set_pconfig(local_user(), 'widgets', 'key', $key); }
36
37         $widgets = array();
38         $d = dir(dirname(__file__));
39         while(false !== ($f = $d->read())) {
40                  if(substr($f,0,7)=="widget_") {
41                          preg_match("|widget_([^.]+).php|", $f, $m);
42                          $w=$m[1];
43                          if ($w!=""){
44                                 require_once($f);
45                                 $widgets[] = array($w, call_user_func($w."_widget_name"));
46                         }
47
48                  }
49         }
50
51         
52         
53         $t = file_get_contents( dirname(__file__). "/settings.tpl" );
54         $o .= replace_macros($t, array(
55                 '$submit' => t('Generate new key'),
56                 '$baseurl' => $a->get_baseurl(),
57                 '$title' => "Widgets",
58                 '$label' => t('Widgets key'),
59                 '$key' => $key,
60                 '$widgets_h' => t('Widgets available'),
61                 '$widgets' => $widgets,
62         ));
63         
64 }
65
66 function widgets_module() {
67         return;
68 }
69
70 function _abs_url($s){
71         $a = get_app();
72         return preg_replace("|href=(['\"])([^h][^t][^t][^p])|", "href=\$1".$a->get_baseurl()."/\$2", $s);
73 }
74
75 function _randomAlphaNum($length){
76         return substr(str_shuffle(str_repeat('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',$length)),0,$length);
77
78
79
80 function widgets_content(&$a) {
81
82         if (!isset($_GET['k'])) {
83                 if($a->argv[2]=="cb"){header('HTTP/1.0 400 Bad Request'); killme();}
84                 return;
85         }
86
87         $r = q("SELECT * FROM pconfig WHERE uid IN (SELECT uid FROM pconfig  WHERE v='%s')AND  cat='widgets'",
88                         dbesc($_GET['k'])
89                  );
90         if (!count($r)){
91                 if($a->argv[2]=="cb"){header('HTTP/1.0 400 Bad Request'); killme();}
92                 return;
93         }    
94         $conf = array();
95         $conf['uid'] = $r[0]['uid'];
96         foreach($r as $e) { $conf[$e['k']]=$e['v']; }
97         
98         $o = "";        
99
100         $widgetfile =dirname(__file__)."/widget_".$a->argv[1].".php";
101         if (file_exists($widgetfile)){
102                 require_once($widgetfile);
103         } else {
104                 if($a->argv[2]=="cb"){header('HTTP/1.0 400 Bad Request'); killme();}
105                 return;
106         }               
107         
108
109
110
111         //echo "<pre>"; var_dump($a->argv); die();
112         if ($a->argv[2]=="cb"){
113                 /*header('Access-Control-Allow-Origin: *');*/
114                 $o .= call_user_func($a->argv[1].'_widget_content',$a, $conf);
115                 
116         } else {
117
118                 
119                 if (isset($_GET['p']) && local_user()==$conf['uid'] ) {
120                         $o .= "<style>.f9k_widget { float: left;border:1px solid black; }</style>";
121                         $o .= "<h1>Preview Widget</h1>";
122                         $o .= '<a href="'.$a->get_baseurl().'/settings/addon">'. t("Plugin Settings") .'</a>';
123
124                         $o .=  "<h4>".call_user_func($a->argv[1].'_widget_name')."</h4>";
125                         $o .=  call_user_func($a->argv[1].'_widget_help');
126                         $o .= "<br style='clear:left'/><br/>";
127                         $o .= "<script>";
128                 } else {
129                         header("content-type: application/x-javascript");
130                 }
131         
132         
133                 
134                 $widget_size = call_user_func($a->argv[1].'_widget_size');
135         
136                 $script = file_get_contents(dirname(__file__)."/widgets.js");
137                 $o .= replace_macros($script, array(
138                         '$entrypoint' => $a->get_baseurl()."/widgets/".$a->argv[1]."/cb/",
139                         '$key' => $conf['key'],
140                         '$widget_id' => 'f9a_'.$a->argv[1]."_"._randomAlphaNum(6),
141                         '$loader' => $a->get_baseurl()."/images/rotator.gif",
142                         '$args' => (isset($_GET['a'])?$_GET['a']:''),
143                         '$width' => $widget_size[0],
144                         '$height' => $widget_size[1],
145                         '$type' => $a->argv[1],
146                 ));
147
148         
149                 if (isset($_GET['p'])) {
150                         $wargs = call_user_func($a->argv[1].'_widget_args');
151                         $jsargs = implode("</em>,<em>", $wargs);
152                         if ($jsargs!='') $jsargs = "&a=<em>".$jsargs."</em>";
153                                 
154                         $o .= "</script>
155                         <br style='clear:left'/><br/>
156                         <h4>Copy and paste this code</h4>
157                         <code>"
158                         
159                         .htmlspecialchars('<script src="'.$a->get_baseurl().'/widgets/'.$a->argv[1].'?k='.$conf['key'])
160                         .$jsargs
161                         .htmlspecialchars('"></script>')
162                         ."</code>";
163
164                         
165                         return $o;
166                 }       
167                 
168         }       
169         
170         echo $o;
171         killme();
172 }
173
174
175
176  
177 ?>