12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class Action extends HTMLOutputter // lawsuit
- {
-
- public $args = array();
-
- protected $action = false;
- protected $ajax = false;
- protected $menus = true;
- protected $needLogin = false;
- protected $needPost = false;
- protected $canPost = false;
-
- protected $scoped = null;
-
- protected $format = null;
- protected $error = null;
- protected $msg = null;
-
- function __construct($output='php://output', $indent=null)
- {
- parent::__construct($output, $indent);
- }
- function getError()
- {
- return $this->error;
- }
- function getInfo()
- {
- return $this->msg;
- }
- public function handleError($e)
- {
- if ($e instanceof ClientException) {
- $this->clientError($e->getMessage(), $e->getCode());
- } elseif ($e instanceof ServerException) {
- $this->serverError($e->getMessage(), $e->getCode());
- } else {
-
- $this->serverError($e->getMessage(), 500);
- }
- }
- static public function run(array $args=array(), $output='php://output', $indent=null) {
- $class = get_called_class();
- $action = new $class($output, $indent);
- set_exception_handler(array($action, 'handleError'));
- $action->execute($args);
- return $action;
- }
- public function execute(array $args=array()) {
-
- if (common_config('db', 'mirror') && $this->isReadOnly($args)) {
- if (is_array(common_config('db', 'mirror'))) {
-
- $arr = common_config('db', 'mirror');
- $k = array_rand($arr);
- $mirror = $arr[$k];
- } else {
- $mirror = common_config('db', 'mirror');
- }
-
- common_config_set('db', 'database', $mirror);
- }
- if (Event::handle('StartActionExecute', array($this, &$args))) {
- $prepared = $this->prepare($args);
- if ($prepared) {
- $this->handle($args);
- } else {
- common_debug('Prepare failed for Action.');
- }
- $this->flush();
- Event::handle('EndActionExecute', array($this));
- }
- }
-
- protected function prepare(array $args=array())
- {
- if ($this->needPost && !$this->isPost()) {
-
- $this->clientError(_('This method requires a POST.'), 405);
- }
-
- if (!$this->canPost) {
- $this->canPost = $this->needPost;
- }
- $this->args = common_copy_args($args);
-
-
- $this->action = strtolower($this->trimmed('action'));
- if ($this->ajax || $this->boolean('ajax')) {
-
- GNUsocial::setAjax(true);
- }
- if ($this->needLogin) {
- $this->checkLogin();
- }
- $this->updateScopedProfile();
- return true;
- }
- public function updateScopedProfile()
- {
- $this->scoped = Profile::current();
- return $this->scoped;
- }
- public function getScoped()
- {
- return ($this->scoped instanceof Profile) ? $this->scoped : null;
- }
-
- public function getActionName()
- {
- return $this->action;
- }
- public function isAction(array $names)
- {
- foreach ($names as $class) {
-
-
- $class = ucfirst($class) . 'Action';
- if ($this instanceof $class) {
- return true;
- }
- }
- return false;
- }
-
- public function showPage()
- {
- if (GNUsocial::isAjax()) {
- self::showAjax();
- return;
- }
- if (Event::handle('StartShowHTML', array($this))) {
- $this->startHTML();
- $this->flush();
- Event::handle('EndShowHTML', array($this));
- }
- if (Event::handle('StartShowHead', array($this))) {
- $this->showHead();
- $this->flush();
- Event::handle('EndShowHead', array($this));
- }
- if (Event::handle('StartShowBody', array($this))) {
- $this->showBody();
- Event::handle('EndShowBody', array($this));
- }
- if (Event::handle('StartEndHTML', array($this))) {
- $this->endHTML();
- Event::handle('EndEndHTML', array($this));
- }
- }
- public function showAjax()
- {
- $this->startHTML('text/xml;charset=utf-8');
- $this->elementStart('head');
-
- $this->element('title', null, $this->title());
- $this->elementEnd('head');
- $this->elementStart('body');
- if ($this->getError()) {
- $this->element('p', array('id'=>'error'), $this->getError());
- } else {
- $this->showContent();
- }
- $this->elementEnd('body');
- $this->endHTML();
- }
- function endHTML()
- {
- global $_startTime;
- if (isset($_startTime)) {
- $endTime = microtime(true);
- $diff = round(($endTime - $_startTime) * 1000);
- $this->raw("<!-- ${diff}ms -->");
- }
- return parent::endHTML();
- }
-
- function showHead()
- {
-
- $this->elementStart('head');
- if (Event::handle('StartShowHeadElements', array($this))) {
- if (Event::handle('StartShowHeadTitle', array($this))) {
- $this->showTitle();
- Event::handle('EndShowHeadTitle', array($this));
- }
- $this->showShortcutIcon();
- $this->showStylesheets();
- $this->showOpenSearch();
- $this->showFeeds();
- $this->showDescription();
- $this->extraHead();
- Event::handle('EndShowHeadElements', array($this));
- }
- $this->elementEnd('head');
- }
-
- function showTitle()
- {
- $this->element('title', null,
-
- sprintf(_('%1$s - %2$s'),
- $this->title(),
- common_config('site', 'name')));
- }
-
- function title()
- {
-
- return _('Untitled page');
- }
-
- function showShortcutIcon()
- {
- if (is_readable(INSTALLDIR . '/theme/' . common_config('site', 'theme') . '/favicon.ico')) {
- $this->element('link', array('rel' => 'shortcut icon',
- 'href' => Theme::path('favicon.ico')));
- } else {
-
- $this->element('link', array('rel' => 'shortcut icon',
- 'href' => common_path('favicon.ico', GNUsocial::isHTTPS())));
- }
- if (common_config('site', 'mobile')) {
- if (is_readable(INSTALLDIR . '/theme/' . common_config('site', 'theme') . '/apple-touch-icon.png')) {
- $this->element('link', array('rel' => 'apple-touch-icon',
- 'href' => Theme::path('apple-touch-icon.png')));
- } else {
- $this->element('link', array('rel' => 'apple-touch-icon',
- 'href' => common_path('apple-touch-icon.png')));
- }
- }
- }
-
- function showStylesheets()
- {
- if (Event::handle('StartShowStyles', array($this))) {
-
- if (Event::handle('StartShowStylesheets', array($this))) {
- $this->primaryCssLink(null, 'screen, projection, tv, print');
- Event::handle('EndShowStylesheets', array($this));
- }
- $this->cssLink('js/extlib/jquery-ui/css/smoothness/jquery-ui.css');
- if (Event::handle('StartShowUAStyles', array($this))) {
- Event::handle('EndShowUAStyles', array($this));
- }
- Event::handle('EndShowStyles', array($this));
- if (common_config('custom_css', 'enabled')) {
- $css = common_config('custom_css', 'css');
- if (Event::handle('StartShowCustomCss', array($this, &$css))) {
- if (trim($css) != '') {
- $this->style($css);
- }
- Event::handle('EndShowCustomCss', array($this));
- }
- }
- }
- }
- function primaryCssLink($mainTheme=null, $media=null)
- {
- $theme = new Theme($mainTheme);
-
- foreach ($theme->getExternals() as $url) {
- $this->cssLink($url, $mainTheme, $media);
- }
-
-
- $baseThemes = $theme->getDeps();
- foreach ($baseThemes as $baseTheme) {
- $this->cssLink('css/display.css', $baseTheme, $media);
- }
- $this->cssLink('css/display.css', $mainTheme, $media);
-
- if (is_rtl(common_language())) {
- if (file_exists(Theme::file('css/rtl.css'))) {
- $this->cssLink('css/rtl.css', $mainTheme, $media);
- }
- }
- }
-
- function showScripts()
- {
- if (Event::handle('StartShowScripts', array($this))) {
- if (Event::handle('StartShowJQueryScripts', array($this))) {
- $this->script('extlib/jquery.js');
- $this->script('extlib/jquery.form.js');
- $this->script('extlib/jquery-ui/jquery-ui.js');
- $this->script('extlib/jquery.cookie.js');
- Event::handle('EndShowJQueryScripts', array($this));
- }
- if (Event::handle('StartShowStatusNetScripts', array($this))) {
- $this->script('util.js');
- $this->script('xbImportNode.js');
-
-
- $this->inlineScript('var _peopletagAC = "' .
- common_local_url('peopletagautocomplete') . '";');
- $this->showScriptMessages();
- $this->showScriptVariables();
-
-
-
-
- if (common_config('javascript', 'bustframes')) {
- $this->inlineScript('if (window.top !== window.self) { document.write = ""; window.top.location = window.self.location; setTimeout(function () { document.body.innerHTML = ""; }, 1); window.self.onload = function () { document.body.innerHTML = ""; }; }');
- }
- Event::handle('EndShowStatusNetScripts', array($this));
- }
- Event::handle('EndShowScripts', array($this));
- }
- }
-
- function showScriptMessages()
- {
- $messages = array();
- if (Event::handle('StartScriptMessages', array($this, &$messages))) {
-
-
- $messages['showmore_tooltip'] = _m('TOOLTIP', 'Show more');
- $messages['popup_close_button'] = _m('TOOLTIP', 'Close popup');
- $messages = array_merge($messages, $this->getScriptMessages());
- Event::handle('EndScriptMessages', array($this, &$messages));
- }
- if (!empty($messages)) {
- $this->inlineScript('SN.messages=' . json_encode($messages));
- }
- return $messages;
- }
- protected function showScriptVariables()
- {
- $vars = array();
- if (Event::handle('StartScriptVariables', array($this, &$vars))) {
- $vars['urlNewNotice'] = common_local_url('newnotice');
- $vars['xhrTimeout'] = ini_get('max_execution_time')*1000;
- Event::handle('EndScriptVariables', array($this, &$vars));
- }
- $this->inlineScript('SN.V = ' . json_encode($vars) . ';');
- return $vars;
- }
-
- function getScriptMessages()
- {
- return array();
- }
-
- function showOpenSearch()
- {
- $this->element('link', array('rel' => 'search',
- 'type' => 'application/opensearchdescription+xml',
- 'href' => common_local_url('opensearch', array('type' => 'people')),
- 'title' => common_config('site', 'name').' People Search'));
- $this->element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
- 'href' => common_local_url('opensearch', array('type' => 'notice')),
- 'title' => common_config('site', 'name').' Notice Search'));
- }
-
- function showFeeds()
- {
- foreach ($this->getFeeds() as $feed) {
- $this->element('link', array('rel' => $feed->rel(),
- 'href' => $feed->url,
- 'type' => $feed->mimeType(),
- 'title' => $feed->title));
- }
- }
-
- function showDescription()
- {
-
- }
-
- function extraHead()
- {
-
- }
-
- function showBody()
- {
- $params = array('id' => $this->getActionName());
- if ($this->scoped instanceof Profile) {
- $params['class'] = 'user_in';
- }
- $this->elementStart('body', $params);
- $this->elementStart('div', array('id' => 'wrap'));
- if (Event::handle('StartShowHeader', array($this))) {
- $this->showHeader();
- $this->flush();
- Event::handle('EndShowHeader', array($this));
- }
- $this->showCore();
- $this->flush();
- if (Event::handle('StartShowFooter', array($this))) {
- $this->showFooter();
- $this->flush();
- Event::handle('EndShowFooter', array($this));
- }
- $this->elementEnd('div');
- $this->showScripts();
- $this->elementEnd('body');
- }
-
- function showHeader()
- {
- $this->elementStart('div', array('id' => 'header'));
- $this->showLogo();
- $this->showPrimaryNav();
- if (Event::handle('StartShowSiteNotice', array($this))) {
- $this->showSiteNotice();
- Event::handle('EndShowSiteNotice', array($this));
- }
- $this->elementEnd('div');
- }
-
- function showLogo()
- {
- $this->elementStart('address', array('id' => 'site_contact', 'class' => 'h-card'));
- if (Event::handle('StartAddressData', array($this))) {
- if (common_config('singleuser', 'enabled')) {
- $user = User::singleUser();
- $url = common_local_url('showstream',
- array('nickname' => $user->nickname));
- } else if (common_logged_in()) {
- $cur = common_current_user();
- $url = common_local_url('all', array('nickname' => $cur->nickname));
- } else {
- $url = common_local_url('public');
- }
- $this->elementStart('a', array('class' => 'home bookmark',
- 'href' => $url));
- if (GNUsocial::isHTTPS()) {
- $logoUrl = common_config('site', 'ssllogo');
- if (empty($logoUrl)) {
-
- $httpUrl = common_config('site', 'logo');
- if (!empty($httpUrl)) {
- try {
- $f = File::getByUrl($httpUrl);
- if (!empty($f->filename)) {
-
- $logoUrl = File::url($f->filename);
- }
- } catch (NoResultException $e) {
-
- }
- }
- }
- } else {
- $logoUrl = common_config('site', 'logo');
- }
- if (empty($logoUrl) && file_exists(Theme::file('logo.png'))) {
-
- $logoUrl = Theme::path('logo.png');
- }
- if (!empty($logoUrl)) {
- $this->element('img', array('class' => 'logo u-photo p-name',
- 'src' => $logoUrl,
- 'alt' => common_config('site', 'name')));
- }
- $this->elementEnd('a');
- Event::handle('EndAddressData', array($this));
- }
- $this->elementEnd('address');
- }
-
- function showPrimaryNav()
- {
- $this->elementStart('div', array('id' => 'site_nav_global_primary'));
- $user = common_current_user();
- if (!empty($user) || !common_config('site', 'private')) {
- $form = new SearchForm($this);
- $form->show();
- }
- $pn = new PrimaryNav($this);
- $pn->show();
- $this->elementEnd('div');
- }
-
- function showSiteNotice()
- {
-
- $text = common_config('site', 'notice');
- if ($text) {
- $this->elementStart('div', array('id' => 'site_notice',
- 'class' => 'system_notice'));
- $this->raw($text);
- $this->elementEnd('div');
- }
- }
-
- function showNoticeForm()
- {
-
- $tabs = array('status' => array('title' => _m('TAB','Status'),
- 'href' => common_local_url('newnotice')));
- $this->elementStart('div', 'input_forms');
- $this->element('label', array('for'=>'input_form_nav'), _m('TAB', 'Share your:'));
- if (Event::handle('StartShowEntryForms', array(&$tabs))) {
- $this->elementStart('ul', array('class' => 'nav',
- 'id' => 'input_form_nav'));
- foreach ($tabs as $tag => $data) {
- $tag = htmlspecialchars($tag);
- $attrs = array('id' => 'input_form_nav_'.$tag,
- 'class' => 'input_form_nav_tab');
- if ($tag == 'status') {
- $attrs['class'] .= ' current';
- }
- $this->elementStart('li', $attrs);
- $this->element('a',
- array('onclick' => 'return SN.U.switchInputFormTab("'.$tag.'");',
- 'href' => $data['href']),
- $data['title']);
- $this->elementEnd('li');
- }
- $this->elementEnd('ul');
- foreach ($tabs as $tag => $data) {
- $attrs = array('class' => 'input_form',
- 'id' => 'input_form_'.$tag);
- if ($tag == 'status') {
- $attrs['class'] .= ' current';
- }
- $this->elementStart('div', $attrs);
- $form = null;
- if (Event::handle('StartMakeEntryForm', array($tag, $this, &$form))) {
- if ($tag == 'status') {
- $options = $this->noticeFormOptions();
- $form = new NoticeForm($this, $options);
- }
- Event::handle('EndMakeEntryForm', array($tag, $this, $form));
- }
- if (!empty($form)) {
- $form->show();
- }
- $this->elementEnd('div');
- }
- }
- $this->elementEnd('div');
- }
- function noticeFormOptions()
- {
- return array();
- }
-
- function showAnonymousMessage()
- {
-
- }
-
- function showCore()
- {
- $this->elementStart('div', array('id' => 'core'));
- $this->elementStart('div', array('id' => 'aside_primary_wrapper'));
- $this->elementStart('div', array('id' => 'content_wrapper'));
- $this->elementStart('div', array('id' => 'site_nav_local_views_wrapper'));
- if (Event::handle('StartShowLocalNavBlock', array($this))) {
- $this->showLocalNavBlock();
- $this->flush();
- Event::handle('EndShowLocalNavBlock', array($this));
- }
- if (Event::handle('StartShowContentBlock', array($this))) {
- $this->showContentBlock();
- $this->flush();
- Event::handle('EndShowContentBlock', array($this));
- }
- if (Event::handle('StartShowAside', array($this))) {
- $this->showAside();
- $this->flush();
- Event::handle('EndShowAside', array($this));
- }
- $this->elementEnd('div');
- $this->elementEnd('div');
- $this->elementEnd('div');
- $this->elementEnd('div');
- }
-
- function showLocalNavBlock()
- {
-
-
- $this->elementStart('div', array('id' => 'site_nav_local_views'));
-
- $this->showLocalNav();
- $this->elementEnd('div');
- }
-
- function showProfileBlock()
- {
- if (common_logged_in()) {
- $block = new DefaultProfileBlock($this);
- $block->show();
- }
- }
-
- function showLocalNav()
- {
- $nav = new DefaultLocalNav($this);
- $nav->show();
- }
-
- function showObjectNavBlock()
- {
- $rmethod = new ReflectionMethod($this, 'showObjectNav');
- $dclass = $rmethod->getDeclaringClass()->getName();
- if ($dclass != 'Action') {
-
-
- $this->elementStart('div', array('id' => 'site_nav_object',
- 'class' => 'section'));
- $this->showObjectNav();
- $this->elementEnd('div');
- }
- }
-
- function showObjectNav()
- {
-
- }
-
- function showContentBlock()
- {
- $this->elementStart('div', array('id' => 'content'));
- if (common_logged_in()) {
- if (Event::handle('StartShowNoticeForm', array($this))) {
- $this->showNoticeForm();
- Event::handle('EndShowNoticeForm', array($this));
- }
- }
- if (Event::handle('StartShowPageTitle', array($this))) {
- $this->showPageTitle();
- Event::handle('EndShowPageTitle', array($this));
- }
- $this->showPageNoticeBlock();
- $this->elementStart('div', array('id' => 'content_inner'));
-
- $this->showContent();
- $this->elementEnd('div');
- $this->elementEnd('div');
- }
-
- function showPageTitle()
- {
- $this->element('h1', null, $this->title());
- }
-
- function showPageNoticeBlock()
- {
- $rmethod = new ReflectionMethod($this, 'showPageNotice');
- $dclass = $rmethod->getDeclaringClass()->getName();
- if ($dclass != 'Action' || Event::hasHandler('StartShowPageNotice')) {
- $this->elementStart('div', array('id' => 'page_notice',
- 'class' => 'system_notice'));
- if (Event::handle('StartShowPageNotice', array($this))) {
- $this->showPageNotice();
- Event::handle('EndShowPageNotice', array($this));
- }
- $this->elementEnd('div');
- }
- }
-
- function showPageNotice()
- {
- }
-
- protected function showContent()
- {
- }
-
- function showAside()
- {
- $this->elementStart('div', array('id' => 'aside_primary',
- 'class' => 'aside'));
- $this->showProfileBlock();
- if (Event::handle('StartShowObjectNavBlock', array($this))) {
- $this->showObjectNavBlock();
- Event::handle('EndShowObjectNavBlock', array($this));
- }
- if (Event::handle('StartShowSections', array($this))) {
- $this->showSections();
- Event::handle('EndShowSections', array($this));
- }
- if (Event::handle('StartShowExportData', array($this))) {
- $this->showExportData();
- Event::handle('EndShowExportData', array($this));
- }
- $this->elementEnd('div');
- }
-
- function showExportData()
- {
- $feeds = $this->getFeeds();
- if (!empty($feeds)) {
- $fl = new FeedList($this, $feeds);
- $fl->show();
- }
- }
-
- function showSections()
- {
-
- }
-
- function showFooter()
- {
- $this->elementStart('div', array('id' => 'footer'));
- if (Event::handle('StartShowInsideFooter', array($this))) {
- $this->showSecondaryNav();
- $this->showLicenses();
- Event::handle('EndShowInsideFooter', array($this));
- }
- $this->elementEnd('div');
- }
-
- function showSecondaryNav()
- {
- $sn = new SecondaryNav($this);
- $sn->show();
- }
-
- function showLicenses()
- {
- $this->showGNUsocialLicense();
- $this->showContentLicense();
- }
-
- function showGNUsocialLicense()
- {
- if (common_config('site', 'broughtby')) {
-
-
-
-
- $instr = _('**%%site.name%%** is a social network, courtesy of [%%site.broughtby%%](%%site.broughtbyurl%%).');
- } else {
-
- $instr = _('**%%site.name%%** is a social network.');
- }
- $instr .= ' ';
-
-
-
-
- $instr .= sprintf(_('It runs on [%1$s](%2$s), version %3$s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html).'), GNUSOCIAL_ENGINE, GNUSOCIAL_ENGINE_URL, GNUSOCIAL_VERSION);
- $output = common_markup_to_html($instr);
- $this->raw($output);
-
- }
-
- function showContentLicense()
- {
- if (Event::handle('StartShowContentLicense', array($this))) {
- switch (common_config('license', 'type')) {
- case 'private':
-
-
- $this->element('p', null, sprintf(_('Content and data of %1$s are private and confidential.'),
- common_config('site', 'name')));
-
- case 'allrightsreserved':
- if (common_config('license', 'owner')) {
-
-
- $this->element('p', null, sprintf(_('Content and data copyright by %1$s. All rights reserved.'),
- common_config('license', 'owner')));
- } else {
-
- $this->element('p', null, _('Content and data copyright by contributors. All rights reserved.'));
- }
- break;
- case 'cc':
- default:
- $this->elementStart('p');
- $image = common_config('license', 'image');
- $sslimage = common_config('license', 'sslimage');
- if (GNUsocial::isHTTPS()) {
- if (!empty($sslimage)) {
- $url = $sslimage;
- } else if (preg_match('#^http://i.creativecommons.org/#', $image)) {
-
- $url = preg_replace('/^http/', 'https', $image, 1);
- } else {
-
- $url = $image;
- }
- } else {
- $url = $image;
- }
- $this->element('img', array('id' => 'license_cc',
- 'src' => $url,
- 'alt' => common_config('license', 'title'),
- 'width' => '80',
- 'height' => '15'));
- $this->text(' ');
-
-
- $notice = _('All %1$s content and data are available under the %2$s license.');
- $link = sprintf('<a class="license" rel="external license" href="%1$s">%2$s</a>',
- htmlspecialchars(common_config('license', 'url')),
- htmlspecialchars(common_config('license', 'title')));
- $this->raw(@sprintf(htmlspecialchars($notice),
- htmlspecialchars(common_config('site', 'name')),
- $link));
- $this->elementEnd('p');
- break;
- }
- Event::handle('EndShowContentLicense', array($this));
- }
- }
-
- function lastModified()
- {
-
-
- return null;
- }
-
- function etag()
- {
- return null;
- }
-
- function isReadOnly($args)
- {
- return false;
- }
-
- function arg($key, $def=null)
- {
- if (array_key_exists($key, $this->args)) {
- return $this->args[$key];
- } else {
- return $def;
- }
- }
-
- function trimmed($key, $def=null)
- {
- $arg = $this->arg($key, $def);
- return is_string($arg) ? trim($arg) : $arg;
- }
-
- protected function handle()
- {
- header('Vary: Accept-Encoding,Cookie');
- $lm = $this->lastModified();
- $etag = $this->etag();
- if ($etag) {
- header('ETag: ' . $etag);
- }
- if ($lm) {
- header('Last-Modified: ' . date(DATE_RFC1123, $lm));
- if ($this->isCacheable()) {
- header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
- header( "Cache-Control: private, must-revalidate, max-age=0" );
- header( "Pragma:");
- }
- }
- $checked = false;
- if ($etag) {
- $if_none_match = (array_key_exists('HTTP_IF_NONE_MATCH', $_SERVER)) ?
- $_SERVER['HTTP_IF_NONE_MATCH'] : null;
- if ($if_none_match) {
-
- $checked = true;
- if ($this->_hasEtag($etag, $if_none_match)) {
- header('HTTP/1.1 304 Not Modified');
-
- exit(0);
- }
- }
- }
- if (!$checked && $lm && array_key_exists('HTTP_IF_MODIFIED_SINCE', $_SERVER)) {
- $if_modified_since = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
- $ims = strtotime($if_modified_since);
- if ($lm <= $ims) {
- header('HTTP/1.1 304 Not Modified');
-
- exit(0);
- }
- }
- }
-
- function isCacheable()
- {
- return true;
- }
-
- function _hasEtag($etag, $if_none_match)
- {
- $etags = explode(',', $if_none_match);
- return in_array($etag, $etags) || in_array('*', $etags);
- }
-
- function boolean($key, $def=false)
- {
- $arg = strtolower($this->trimmed($key));
- if (is_null($arg)) {
- return $def;
- } else if (in_array($arg, array('true', 'yes', '1', 'on'))) {
- return true;
- } else if (in_array($arg, array('false', 'no', '0'))) {
- return false;
- } else {
- return $def;
- }
- }
-
- function booleanintstring($key, $def=false)
- {
- return $this->boolean($key, $def) ? '1' : '0';
- }
-
- function int($key, $defValue=null, $maxValue=null, $minValue=null)
- {
- $arg = intval($this->arg($key));
- if (!is_numeric($this->arg($key)) || $arg != $this->arg($key)) {
- return $defValue;
- }
- if (!is_null($maxValue)) {
- $arg = min($arg, $maxValue);
- }
- if (!is_null($minValue)) {
- $arg = max($arg, $minValue);
- }
- return $arg;
- }
-
- function serverError($msg, $code=500, $format=null)
- {
- if ($format === null) {
- $format = $this->format;
- }
- common_debug("Server error '{$code}' on '{$this->action}': {$msg}", __FILE__);
- if (!array_key_exists($code, ServerErrorAction::$status)) {
- $code = 500;
- }
- $status_string = ServerErrorAction::$status[$code];
- switch ($format) {
- case 'xml':
- header("HTTP/1.1 {$code} {$status_string}");
- $this->initDocument('xml');
- $this->elementStart('hash');
- $this->element('error', null, $msg);
- $this->element('request', null, $_SERVER['REQUEST_URI']);
- $this->elementEnd('hash');
- $this->endDocument('xml');
- break;
- case 'json':
- if (!isset($this->callback)) {
- header("HTTP/1.1 {$code} {$status_string}");
- }
- $this->initDocument('json');
- $error_array = array('error' => $msg, 'request' => $_SERVER['REQUEST_URI']);
- print(json_encode($error_array));
- $this->endDocument('json');
- break;
- default:
- common_log(LOG_ERR, 'Handled serverError ('._ve($code).') but cannot output into desired format ('._ve($this->format).'): '._ve($msg));
- $action = new ServerErrorAction($msg, $code);
- $action->execute();
- }
- exit((int)$code);
- }
-
- function clientError($msg, $code=400, $format=null)
- {
-
- if ($format === null) {
- $format = $this->format;
- }
- common_debug("User error '{$code}' on '{$this->action}': {$msg}", __FILE__);
- if (!array_key_exists($code, ClientErrorAction::$status)) {
- $code = 400;
- }
- $status_string = ClientErrorAction::$status[$code];
- switch ($format) {
- case 'xml':
- header("HTTP/1.1 {$code} {$status_string}");
- $this->initDocument('xml');
- $this->elementStart('hash');
- $this->element('error', null, $msg);
- $this->element('request', null, $_SERVER['REQUEST_URI']);
- $this->elementEnd('hash');
- $this->endDocument('xml');
- break;
- case 'json':
- if (!isset($this->callback)) {
- header("HTTP/1.1 {$code} {$status_string}");
- }
- $this->initDocument('json');
- $error_array = array('error' => $msg, 'request' => $_SERVER['REQUEST_URI']);
- print(json_encode($error_array));
- $this->endDocument('json');
- break;
- case 'text':
- header("HTTP/1.1 {$code} {$status_string}");
- header('Content-Type: text/plain; charset=utf-8');
- echo $msg;
- break;
- default:
- common_log(LOG_ERR, 'Handled clientError ('._ve($code).') but cannot output into desired format ('._ve($this->format).'): '._ve($msg));
- $action = new ClientErrorAction($msg, $code);
- $action->execute();
- }
- exit((int)$code);
- }
-
- public function checkLogin($redir=true)
- {
- if (common_logged_in()) {
- return true;
- }
- if ($redir==true) {
- common_set_returnto($_SERVER['REQUEST_URI']);
- common_redirect(common_local_url('login'));
- }
-
- $this->clientError(_('Not logged in.'), 403);
- }
-
- function selfUrl()
- {
- list($action, $args) = $this->returnToArgs();
- return common_local_url($action, $args);
- }
-
- function returnToArgs()
- {
- $action = $this->getActionName();
- $args = $this->args;
- unset($args['action']);
- if (common_config('site', 'fancy')) {
- unset($args['p']);
- }
- if (array_key_exists('submit', $args)) {
- unset($args['submit']);
- }
- foreach (array_keys($_COOKIE) as $cookie) {
- unset($args[$cookie]);
- }
- return array($action, $args);
- }
-
- function menuItem($url, $text, $title=null, $is_selected=false, $id=null, $class=null)
- {
-
-
- $lattrs = array();
- $classes = array();
- if ($class !== null) {
- $classes[] = trim($class);
- }
- if ($is_selected) {
- $classes[] = 'current';
- }
- if (!empty($classes)) {
- $lattrs['class'] = implode(' ', $classes);
- }
- if (!is_null($id)) {
- $lattrs['id'] = $id;
- }
- $this->elementStart('li', $lattrs);
- $attrs['href'] = $url;
- if ($title) {
- $attrs['title'] = $title;
- }
- $this->element('a', $attrs, $text);
- $this->elementEnd('li');
- }
-
-
-
-
- function pagination($have_before, $have_after, $page, $action, $args=null)
- {
-
- if ($have_before || $have_after) {
- $this->elementStart('ul', array('class' => 'nav',
- 'id' => 'pagination'));
- }
- if ($have_before) {
- $pargs = array('page' => $page-1);
- $this->elementStart('li', array('class' => 'nav_prev'));
- $this->element('a', array('href' => common_local_url($action, $args, $pargs),
- 'rel' => 'prev'),
-
-
- _('After'));
- $this->elementEnd('li');
- }
- if ($have_after) {
- $pargs = array('page' => $page+1);
- $this->elementStart('li', array('class' => 'nav_next'));
- $this->element('a', array('href' => common_local_url($action, $args, $pargs),
- 'rel' => 'next'),
-
-
- _('Before'));
- $this->elementEnd('li');
- }
- if ($have_before || $have_after) {
- $this->elementEnd('ul');
- }
- }
-
- function getFeeds()
- {
- return array();
- }
-
-
-
- function checkSessionToken()
- {
-
- $token = $this->trimmed('token');
- if (empty($token) || $token != common_session_token()) {
-
- $this->clientError(_('There was a problem with your session token.'));
- }
- }
-
- function isPost()
- {
- return ($_SERVER['REQUEST_METHOD'] == 'POST');
- }
- }
|