| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Plugin to render old skool templates | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Captures rendered parts from the output buffer, passes them through a template file: tpl/index.html | 
					
						
							|  |  |  |  * Adds an API method at index.php/template/update which lets you overwrite the template file | 
					
						
							|  |  |  |  * Requires username/password and a single POST parameter called "template" | 
					
						
							|  |  |  |  * The method is disabled unless the user is #1, the first user of the system
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Plugin | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |  * @author    Brian Hendrickson <brian@megapump.com> | 
					
						
							|  |  |  |  * @copyright 2009 Megapump, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://megapump.com/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:42:34 -04:00
										 |  |  | if (!defined('STATUSNET')) { | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | define('TEMPLATEPLUGIN_VERSION', '0.1'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TemplatePlugin extends Plugin { | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   var $blocks = array(); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   function __construct() { | 
					
						
							|  |  |  |     parent::__construct(); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // capture the RouterInitialized event
 | 
					
						
							|  |  |  |   // and connect a new API method
 | 
					
						
							|  |  |  |   // for updating the template
 | 
					
						
							| 
									
										
										
										
											2009-10-29 13:55:37 -04:00
										 |  |  |   function onRouterInitialized( $m ) { | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     $m->connect( 'template/update', array( | 
					
						
							|  |  |  |       'action'      => 'template', | 
					
						
							|  |  |  |     )); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // <%styles%>
 | 
					
						
							|  |  |  |   // <%scripts%>
 | 
					
						
							|  |  |  |   // <%search%>
 | 
					
						
							|  |  |  |   // <%feeds%>
 | 
					
						
							|  |  |  |   // <%description%>
 | 
					
						
							|  |  |  |   // <%head%>
 | 
					
						
							|  |  |  |   function onStartShowHead( &$act ) { | 
					
						
							|  |  |  |     $this->clear_xmlWriter($act); | 
					
						
							|  |  |  |     $act->extraHead(); | 
					
						
							|  |  |  |     $this->blocks['head'] = $act->xw->flush(); | 
					
						
							|  |  |  |     $act->showStylesheets(); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  |     $this->blocks['styles'] = $act->xw->flush(); | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     $act->showScripts(); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  |     $this->blocks['scripts'] = $act->xw->flush(); | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     $act->showFeeds(); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  |     $this->blocks['feeds'] = $act->xw->flush(); | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     $act->showOpenSearch(); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  |     $this->blocks['search'] = $act->xw->flush(); | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     $act->showDescription(); | 
					
						
							|  |  |  |     $this->blocks['description'] = $act->xw->flush(); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // <%bodytext%>
 | 
					
						
							|  |  |  |   function onStartShowContentBlock( &$act ) { | 
					
						
							|  |  |  |     $this->clear_xmlWriter($act); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   function onEndShowContentBlock( &$act ) { | 
					
						
							|  |  |  |     $this->blocks['bodytext'] = $act->xw->flush(); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // <%localnav%>
 | 
					
						
							|  |  |  |   function onStartShowLocalNavBlock( &$act ) { | 
					
						
							|  |  |  |     $this->clear_xmlWriter($act); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   function onEndShowLocalNavBlock( &$act ) { | 
					
						
							|  |  |  |     $this->blocks['localnav'] = $act->xw->flush(); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // <%export%>
 | 
					
						
							|  |  |  |   function onStartShowExportData( &$act ) { | 
					
						
							|  |  |  |     $this->clear_xmlWriter($act); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   function onEndShowExportData( &$act ) { | 
					
						
							|  |  |  |     $this->blocks['export'] = $act->xw->flush(); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // <%subscriptions%>
 | 
					
						
							|  |  |  |   // <%subscribers%>
 | 
					
						
							|  |  |  |   // <%groups%>
 | 
					
						
							|  |  |  |   // <%statistics%>
 | 
					
						
							|  |  |  |   // <%cloud%>
 | 
					
						
							|  |  |  |   // <%groupmembers%>
 | 
					
						
							|  |  |  |   // <%groupstatistics%>
 | 
					
						
							|  |  |  |   // <%groupcloud%>
 | 
					
						
							|  |  |  |   // <%popular%>
 | 
					
						
							|  |  |  |   // <%groupsbyposts%>
 | 
					
						
							|  |  |  |   // <%featuredusers%>
 | 
					
						
							|  |  |  |   // <%groupsbymembers%>
 | 
					
						
							|  |  |  |   function onStartShowSections( &$act ) { | 
					
						
							|  |  |  |     global $action; | 
					
						
							|  |  |  |     $this->clear_xmlWriter($act); | 
					
						
							|  |  |  |     switch ($action) { | 
					
						
							|  |  |  |       case "showstream": | 
					
						
							|  |  |  |         $act->showSubscriptions(); | 
					
						
							|  |  |  |         $this->blocks['subscriptions'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $act->showSubscribers(); | 
					
						
							|  |  |  |         $this->blocks['subscribers'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $act->showGroups(); | 
					
						
							|  |  |  |         $this->blocks['groups'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $act->showStatistics(); | 
					
						
							|  |  |  |         $this->blocks['statistics'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $cloud = new PersonalTagCloudSection($act, $act->user); | 
					
						
							|  |  |  |         $cloud->show(); | 
					
						
							|  |  |  |         $this->blocks['cloud'] = $act->xw->flush(); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |       case "showgroup": | 
					
						
							|  |  |  |         $act->showMembers(); | 
					
						
							|  |  |  |         $this->blocks['groupmembers'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $act->showStatistics(); | 
					
						
							|  |  |  |         $this->blocks['groupstatistics'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $cloud = new GroupTagCloudSection($act, $act->group); | 
					
						
							|  |  |  |         $cloud->show(); | 
					
						
							|  |  |  |         $this->blocks['groupcloud'] = $act->xw->flush(); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |       case "public": | 
					
						
							|  |  |  |         $pop = new PopularNoticeSection($act); | 
					
						
							|  |  |  |         $pop->show(); | 
					
						
							|  |  |  |         $this->blocks['popular'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $gbp = new GroupsByPostsSection($act); | 
					
						
							|  |  |  |         $gbp->show(); | 
					
						
							|  |  |  |         $this->blocks['groupsbyposts'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $feat = new FeaturedUsersSection($act); | 
					
						
							|  |  |  |         $feat->show(); | 
					
						
							|  |  |  |         $this->blocks['featuredusers'] = $act->xw->flush(); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |       case "groups": | 
					
						
							|  |  |  |         $gbp = new GroupsByPostsSection($act); | 
					
						
							|  |  |  |         $gbp->show(); | 
					
						
							|  |  |  |         $this->blocks['groupsbyposts'] = $act->xw->flush(); | 
					
						
							|  |  |  |         $gbm = new GroupsByMembersSection($act); | 
					
						
							|  |  |  |         $gbm->show(); | 
					
						
							|  |  |  |         $this->blocks['groupsbymembers'] = $act->xw->flush(); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // <%logo%>
 | 
					
						
							|  |  |  |   // <%nav%>
 | 
					
						
							|  |  |  |   // <%notice%>
 | 
					
						
							|  |  |  |   // <%noticeform%>
 | 
					
						
							|  |  |  |   function onStartShowHeader( &$act ) { | 
					
						
							|  |  |  |     $this->clear_xmlWriter($act); | 
					
						
							|  |  |  |     $act->showLogo(); | 
					
						
							|  |  |  |     $this->blocks['logo'] = $act->xw->flush(); | 
					
						
							|  |  |  |     $act->showPrimaryNav(); | 
					
						
							|  |  |  |     $this->blocks['nav'] = $act->xw->flush(); | 
					
						
							|  |  |  |     $act->showSiteNotice(); | 
					
						
							|  |  |  |     $this->blocks['notice'] = $act->xw->flush(); | 
					
						
							|  |  |  |     if (common_logged_in()) { | 
					
						
							|  |  |  |         $act->showNoticeForm(); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         $act->showAnonymousMessage(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     $this->blocks['noticeform'] = $act->xw->flush(); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // <%secondarynav%>
 | 
					
						
							|  |  |  |   // <%licenses%>
 | 
					
						
							|  |  |  |   function onStartShowFooter( &$act ) { | 
					
						
							|  |  |  |     $this->clear_xmlWriter($act); | 
					
						
							|  |  |  |     $act->showSecondaryNav(); | 
					
						
							|  |  |  |     $this->blocks['secondarynav'] = $act->xw->flush(); | 
					
						
							|  |  |  |     $act->showLicenses(); | 
					
						
							|  |  |  |     $this->blocks['licenses'] = $act->xw->flush(); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // capture the EndHTML event
 | 
					
						
							|  |  |  |   // and include the template
 | 
					
						
							|  |  |  |   function onEndEndHTML($act) { | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     global $action, $tags; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     // set the action and title values
 | 
					
						
							|  |  |  |     $vars = array( | 
					
						
							|  |  |  |       'action'=>$action, | 
					
						
							|  |  |  |       'title'=>$act->title(). " - ". common_config('site', 'name') | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     // use the PHP template
 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:53:24 -04:00
										 |  |  |     // unless statusnet config:
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     //   $config['template']['mode'] = 'html';
 | 
					
						
							|  |  |  |     if (!(common_config('template', 'mode') == 'html')) { | 
					
						
							| 
									
										
										
										
											2009-08-24 20:03:22 +12:00
										 |  |  |       $tpl_file = $this->templateFolder() . '/index.php'; | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       $tags = array_merge($vars,$this->blocks); | 
					
						
							|  |  |  |       include $tpl_file; | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-24 20:03:22 +12:00
										 |  |  |     $tpl_file = $this->templateFolder() . '/index.html'; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     // read the static template
 | 
					
						
							|  |  |  |     $output = file_get_contents( $tpl_file ); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     $tags = array(); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     // get a list of the <%tags%> in the template
 | 
					
						
							|  |  |  |     $pattern='/<%([a-z]+)%>/'; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     if ( 1 <= preg_match_all( $pattern, $output, $found )) | 
					
						
							|  |  |  |       $tags[] = $found; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     // for each found tag, set its value from the rendered blocks
 | 
					
						
							|  |  |  |     foreach( $tags[0][1] as $pos=>$tag ) { | 
					
						
							|  |  |  |       if (isset($this->blocks[$tag])) | 
					
						
							|  |  |  |         $vars[$tag] = $this->blocks[$tag]; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       // didn't find a block for the tag
 | 
					
						
							|  |  |  |       elseif (!isset($vars[$tag])) | 
					
						
							|  |  |  |         $vars[$tag] = ''; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     // replace the tags in the template
 | 
					
						
							|  |  |  |     foreach( $vars as $key=>$val ) | 
					
						
							|  |  |  |       $output = str_replace( '<%'.$key.'%>', $val, $output ); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     echo $output; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-08-24 20:03:22 +12:00
										 |  |  |   function templateFolder() { | 
					
						
							|  |  |  |     return 'tpl'; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // catching the StartShowHTML event to halt the rendering
 | 
					
						
							|  |  |  |   function onStartShowHTML( &$act ) { | 
					
						
							|  |  |  |     $this->clear_xmlWriter($act); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   // clear the xmlWriter
 | 
					
						
							|  |  |  |   function clear_xmlWriter( &$act ) { | 
					
						
							|  |  |  |     $act->xw->openMemory(); | 
					
						
							|  |  |  |     $act->xw->setIndent(true); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Action for updating the template remotely | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * "template/update" -- a POST method that requires a single | 
					
						
							|  |  |  |  * parameter "template", containing the new template code | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Plugin | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |  * @author   Brian Hendrickson <brian@megapump.com> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link     http://megapump.com/ | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  | class TemplateAction extends Action | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   function prepare($args) { | 
					
						
							|  |  |  |     parent::prepare($args); | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |   function handle($args) { | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     parent::handle($args); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     if (!isset($_SERVER['PHP_AUTH_USER'])) { | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       // not authenticated, show login form
 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |       header('WWW-Authenticate: Basic realm="StatusNet API"'); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       // cancelled the browser login form
 | 
					
						
							|  |  |  |       $this->clientError(_('Authentication error!'), $code = 401); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       $nick = $_SERVER['PHP_AUTH_USER']; | 
					
						
							|  |  |  |       $pass = $_SERVER['PHP_AUTH_PW']; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       // check username and password
 | 
					
						
							|  |  |  |       $user = common_check_user($nick,$pass); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       if ($user) { | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |         // verify that user is admin
 | 
					
						
							|  |  |  |         if (!($user->id == 1)) | 
					
						
							| 
									
										
										
										
											2009-12-13 18:55:17 +01:00
										 |  |  |           $this->clientError(_('Only User #1 can update the template.'), $code = 401); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |         // open the old template
 | 
					
						
							| 
									
										
										
										
											2009-08-24 20:03:22 +12:00
										 |  |  |         $tpl_file = $this->templateFolder() . '/index.html'; | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |         $fp = fopen( $tpl_file, 'w+' ); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |         // overwrite with the new template
 | 
					
						
							|  |  |  |         fwrite($fp, $this->arg('template')); | 
					
						
							|  |  |  |         fclose($fp); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |         header('HTTP/1.1 200 OK'); | 
					
						
							|  |  |  |         header('Content-type: text/plain'); | 
					
						
							|  |  |  |         print "Template Updated!"; | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       } else { | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |         // bad username and password
 | 
					
						
							|  |  |  |         $this->clientError(_('Authentication error!'), $code = 401); | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-01-07 17:43:56 -08:00
										 |  |  |     function onPluginVersion(&$versions) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $versions[] = array('name' => 'Template', | 
					
						
							|  |  |  |                             'version' => TEMPLATEPLUGIN_VERSION, | 
					
						
							|  |  |  |                             'author' => 'Brian Hendrickson', | 
					
						
							|  |  |  |                             'homepage' => 'http://status.net/wiki/Plugin:Template', | 
					
						
							|  |  |  |                             'rawdescription' => | 
					
						
							|  |  |  |                             _m('Use an HTML template for Web output.')); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-08-25 18:53:24 -04:00
										 |  |  |  * Function for retrieving a statusnet display section | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * requires one parameter, the name of the section | 
					
						
							|  |  |  |  * section names are listed in the comments of the TemplatePlugin class | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Plugin | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-03-24 12:41:03 -07:00
										 |  |  |  * @author   Brian Hendrickson <brian@megapump.com> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link     http://megapump.com/ | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function section($tagname) { | 
					
						
							|  |  |  |   global $tags; | 
					
						
							|  |  |  |   if (isset($tags[$tagname])) | 
					
						
							|  |  |  |     return $tags[$tagname]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |