yellow/system/core/core.php

1758 lines
54 KiB
PHP
Raw Normal View History

2013-04-07 18:04:09 +00:00
<?php
// Copyright (c) 2013 Datenstrom, http://datenstrom.se
2013-04-07 18:04:09 +00:00
// This file may be used and distributed under the terms of the public license.
2013-04-07 18:04:09 +00:00
// Yellow main class
class Yellow
{
2013-12-21 13:10:15 +00:00
const Version = "0.2.5";
2013-04-14 22:41:04 +00:00
var $page; //current page data
2013-05-01 20:16:05 +00:00
var $pages; //current page tree from file system
2013-07-11 20:33:28 +00:00
var $config; //configuration
var $text; //text strings
2013-11-29 12:16:14 +00:00
var $toolbox; //toolbox with helpers
2013-07-11 20:33:28 +00:00
var $plugins; //plugins
2013-04-07 18:04:09 +00:00
function __construct()
{
2013-12-01 11:59:07 +00:00
$this->pages = new YellowPages($this);
$this->config = new YellowConfig($this);
$this->text = new YellowText($this);
$this->toolbox = new YellowToolbox();
$this->plugins = new YellowPlugins();
2013-04-14 22:41:04 +00:00
$this->config->setDefault("sitename", "Yellow");
$this->config->setDefault("author", "Yellow");
$this->config->setDefault("language", "en");
2013-04-07 18:04:09 +00:00
$this->config->setDefault("template", "default");
2013-05-23 06:24:50 +00:00
$this->config->setDefault("style", "default");
2013-12-01 11:59:07 +00:00
$this->config->setDefault("parser", "markdownextra");
2013-06-07 20:01:12 +00:00
$this->config->setDefault("serverName", $this->toolbox->getServerName());
$this->config->setDefault("serverBase", $this->toolbox->getServerBase());
2013-05-23 06:24:50 +00:00
$this->config->setDefault("styleLocation", "/media/styles/");
$this->config->setDefault("imageLocation", "/media/images/");
$this->config->setDefault("pluginLocation", "media/plugins/");
2013-04-07 18:04:09 +00:00
$this->config->setDefault("systemDir", "system/");
$this->config->setDefault("configDir", "system/config/");
$this->config->setDefault("pluginDir", "system/plugins/");
$this->config->setDefault("snippetDir", "system/snippets/");
$this->config->setDefault("templateDir", "system/templates/");
$this->config->setDefault("mediaDir", "media/");
2013-05-23 06:24:50 +00:00
$this->config->setDefault("styleDir", "media/styles/");
$this->config->setDefault("imageDir", "media/images/");
2013-04-07 18:04:09 +00:00
$this->config->setDefault("contentDir", "content/");
$this->config->setDefault("contentHomeDir", "home/");
2013-04-14 22:41:04 +00:00
$this->config->setDefault("contentDefaultFile", "page.txt");
2013-04-07 18:04:09 +00:00
$this->config->setDefault("contentExtension", ".txt");
2013-04-14 22:41:04 +00:00
$this->config->setDefault("configExtension", ".ini");
2013-04-07 18:04:09 +00:00
$this->config->setDefault("configFile", "config.ini");
2013-04-14 22:41:04 +00:00
$this->config->setDefault("errorPageFile", "error(.*).txt");
2013-12-01 11:59:07 +00:00
$this->config->setDefault("textStringFile", "text(.*).ini");
2013-04-14 22:41:04 +00:00
$this->config->load($this->config->get("configDir").$this->config->get("configFile"));
2013-11-29 12:16:14 +00:00
$this->text->load($this->config->get("configDir").$this->config->get("textStringFile"));
2013-04-14 22:41:04 +00:00
}
2013-06-07 20:01:12 +00:00
// Handle request
2013-07-30 13:32:08 +00:00
function request($statusCodeRequest = 200)
2013-04-07 18:04:09 +00:00
{
$this->toolbox->timerStart($time);
ob_start();
$statusCode = 0;
$serverName = $this->config->get("serverName");
$serverBase = $this->config->get("serverBase");
2013-12-21 13:10:15 +00:00
list($location, $fileName) = $this->getRequestLocationFile($serverBase);
2013-12-01 11:59:07 +00:00
$this->page = new YellowPage($this, $location);
2013-04-14 22:41:04 +00:00
foreach($this->plugins->plugins as $key=>$value)
{
2013-04-07 18:04:09 +00:00
if(method_exists($value["obj"], "onRequest"))
2013-04-14 22:41:04 +00:00
{
$this->pages->requestHandler = $key;
$statusCode = $value["obj"]->onRequest($serverName, $serverBase, $location, $fileName);
if($statusCode != 0) break;
2013-04-14 22:41:04 +00:00
}
}
if($statusCode == 0)
{
$this->pages->requestHandler = "core";
$statusCode = $this->processRequest($serverName, $serverBase, $location, $fileName, true, $statusCode);
}
2013-07-30 13:32:08 +00:00
if($statusCodeRequest > 200) $this->page->error($statusCodeRequest, "Request error");
if($this->isRequestError())
2013-07-11 20:33:28 +00:00
{
ob_clean();
$statusCode = $this->processRequestError();
2013-07-11 20:33:28 +00:00
}
2013-06-27 17:00:03 +00:00
ob_end_flush();
$this->toolbox->timerStop($time);
if(defined("DEBUG") && DEBUG>=1) echo "Yellow::request status:$statusCode location:$location<br>\n";
if(defined("DEBUG") && DEBUG>=1) echo "Yellow::request time:$time ms<br>\n";
2013-07-11 20:33:28 +00:00
return $statusCode;
2013-04-14 22:41:04 +00:00
}
2013-06-27 17:00:03 +00:00
// Process request
function processRequest($serverName, $serverBase, $location, $fileName, $cacheable, $statusCode)
2013-04-14 22:41:04 +00:00
{
$handler = $this->getRequestHandler();
2013-04-14 22:41:04 +00:00
if($statusCode == 0)
{
if(is_readable($fileName))
{
2013-10-16 21:11:24 +00:00
if(!$this->isRequestCleanUrl())
{
2013-10-16 21:11:24 +00:00
$statusCode = 200;
$fileName = $this->readPage($serverBase, $location, $fileName, $cacheable, $statusCode);
} else {
$statusCode = 303;
2013-12-21 13:10:15 +00:00
$locationArgs = $this->toolbox->getLocationArgsCleanUrl($location);
2013-10-16 21:11:24 +00:00
$this->sendStatus($statusCode, $this->toolbox->getHttpLocationHeader($serverName, $serverBase, $location.$locationArgs));
}
2013-04-14 22:41:04 +00:00
} else {
2013-12-21 13:10:15 +00:00
if($this->toolbox->isFileLocation($location) && $this->isContentDirectory("$location/"))
2013-04-14 22:41:04 +00:00
{
$statusCode = 301;
$this->sendStatus($statusCode, $this->toolbox->getHttpLocationHeader($serverName, $serverBase, "$location/"));
2013-04-14 22:41:04 +00:00
} else {
$statusCode = 404;
$fileName = $this->readPage($serverBase, $location, $fileName, $cacheable, $statusCode);
2013-04-14 22:41:04 +00:00
}
}
2013-06-27 17:00:03 +00:00
} else if($statusCode >= 400) {
$fileName = $this->readPage($serverBase, $location, $fileName, $cacheable, $statusCode);
2013-04-14 22:41:04 +00:00
}
if($this->page->statusCode != 0) $statusCode = $this->sendPage();
if(defined("DEBUG") && DEBUG>=1) echo "Yellow::processRequest handler:$handler base:$serverBase file:$fileName<br>\n";
2013-04-14 22:41:04 +00:00
return $statusCode;
}
2013-07-11 20:33:28 +00:00
// Process request with error
function processRequestError()
2013-04-14 22:41:04 +00:00
{
$handler = $this->getRequestHandler();
$serverBase = $this->pages->serverBase;
$fileName = $this->readPage($serverBase, $this->page->location, $this->page->fileName, $this->page->cacheable,
$this->page->statusCode, $this->page->get("pageError"));
2013-07-11 20:33:28 +00:00
$statusCode = $this->sendPage();
if(defined("DEBUG") && DEBUG>=1) echo "Yellow::processRequestError handler:$handler base:$serverBase file:$fileName<br>\n";
2013-07-11 20:33:28 +00:00
return $statusCode;
}
// Read page from file
function readPage($serverBase, $location, $fileName, $cacheable, $statusCode, $pageError = "")
2013-07-11 20:33:28 +00:00
{
if($statusCode >= 400)
{
$fileName = $this->config->get("configDir").$this->config->get("errorPageFile");
$fileName = strreplaceu("(.*)", $statusCode, $fileName);
$cacheable = false;
}
2013-06-27 17:00:03 +00:00
$fileHandle = @fopen($fileName, "r");
if($fileHandle)
{
$fileData = fread($fileHandle, filesize($fileName));
fclose($fileHandle);
2013-07-11 20:33:28 +00:00
}
$this->pages->serverBase = $serverBase;
2013-12-01 11:59:07 +00:00
$this->page = new YellowPage($this, $location);
$this->page->parseData($fileName, $fileData, $cacheable, $statusCode, $pageError);
2013-10-16 21:11:24 +00:00
$this->page->setHeader("Content-Type", "text/html; charset=UTF-8");
$this->page->setHeader("Last-Modified", $this->page->getModified(true));
if(!$this->page->isCacheable()) $this->page->setHeader("Cache-Control", "no-cache, must-revalidate");
2013-06-27 17:00:03 +00:00
$this->text->setLanguage($this->page->get("language"));
2013-12-11 14:13:38 +00:00
$this->page->parseContent();
2013-06-27 17:00:03 +00:00
return $fileName;
2013-04-14 22:41:04 +00:00
}
// Send page response
2013-07-11 20:33:28 +00:00
function sendPage()
2013-04-14 22:41:04 +00:00
{
2013-07-11 20:33:28 +00:00
$this->template($this->page->get("template"));
2013-06-27 17:00:03 +00:00
$fileNameTemplate = $this->config->get("templateDir").$this->page->get("template").".php";
2013-07-11 20:33:28 +00:00
$fileNameStyle = $this->config->get("styleDir").$this->page->get("style").".css";
if(!is_file($fileNameStyle))
{
$this->page->error(500, "Style '".$this->page->get("style")."' does not exist!");
}
if(!$this->plugins->isExisting($this->page->get("parser")))
{
$this->page->error(500, "Parser '".$this->page->get("parser")."' does not exist!");
}
2013-07-11 20:33:28 +00:00
$statusCode = $this->page->statusCode;
2013-11-29 12:16:14 +00:00
if($statusCode==200 && $this->getRequestHandler()=="core" && $this->page->isExisting("redirect"))
{
$statusCode = 301;
$location = $this->page->get("redirect");
if(preg_match("/^[^\/]+$/", $location)) $location = $this->toolbox->getDirectoryLocation($this->page->getLocation()).$location;
$this->page->clean($statusCode, $this->toolbox->getHttpLocationHeader($this->config->get("serverName"), "", $location));
$this->page->setHeader("Last-Modified", $this->page->getModified(true));
$this->page->setHeader("Cache-Control", "no-cache, must-revalidate");
}
if($statusCode==200 && $this->page->isCacheable() &&
$this->toolbox->isFileNotModified($this->page->getHeader("Last-Modified")))
2013-06-27 17:00:03 +00:00
{
$statusCode = 304;
2013-12-21 13:10:15 +00:00
if($this->page->isHeader("Cache-Control")) $responseHeader = "Cache-Control: ".$this->page->getHeader("Cache-Control");
$this->page->clean($statusCode, $responseHeader);
}
2013-11-29 12:16:14 +00:00
if($this->page->isExisting("pageClean")) ob_clean();
if(PHP_SAPI != "cli")
{
@header($this->toolbox->getHttpStatusFormatted($statusCode));
2013-11-29 12:16:14 +00:00
foreach($this->page->headerData as $key=>$value) @header("$key: $value");
2013-07-11 20:33:28 +00:00
}
if(defined("DEBUG") && DEBUG>=1)
{
foreach($this->page->headerData as $key=>$value) echo "Yellow::sendPage $key: $value<br>\n";
echo "Yellow::sendPage template:$fileNameTemplate style:$fileNameStyle<br>\n";
2013-06-27 17:00:03 +00:00
}
return $statusCode;
}
2013-06-27 17:00:03 +00:00
// Send status response
2013-11-29 12:16:14 +00:00
function sendStatus($statusCode, $responseHeader = "")
2013-06-27 17:00:03 +00:00
{
if(PHP_SAPI != "cli")
{
@header($this->toolbox->getHttpStatusFormatted($statusCode));
2013-11-29 12:16:14 +00:00
if(!empty($responseHeader)) @header($responseHeader);
}
}
2013-12-21 13:10:15 +00:00
// Return request location and file name, without server base
function getRequestLocationFile($serverBase)
{
$location = $this->toolbox->getLocationNormalised();
$location = substru($location, strlenu($serverBase));
$fileName = $this->toolbox->findFileFromLocation($location,
$this->config->get("contentDir"), $this->config->get("contentHomeDir"),
$this->config->get("contentDefaultFile"), $this->config->get("contentExtension"));
if(!$this->toolbox->isFileLocation($location) && !is_file($fileName) &&
preg_match("/[^\/]+:.*/", rawurldecode($this->toolbox->getLocation())))
{
$location = rtrim($location, '/');
$fileName = $this->toolbox->findFileFromLocation($location,
$this->config->get("contentDir"), $this->config->get("contentHomeDir"),
$this->config->get("contentDefaultFile"), $this->config->get("contentExtension"));
}
return array($location, $fileName);
}
// Return name of request handler
function getRequestHandler()
{
return $this->pages->requestHandler;
}
2013-10-16 21:11:24 +00:00
// Check if clean URL is requested
function isRequestCleanUrl()
{
return isset($_GET["clean-url"]) || isset($_POST["clean-url"]);
}
2013-12-21 13:10:15 +00:00
// Check if request error happened
function isRequestError()
{
$serverBase = $this->config->get("serverBase");
if(!empty($serverBase) && !$this->toolbox->isValidLocation($serverBase))
{
$this->page->error(500, "Server base '$serverBase' not supported!");
}
return $this->page->isExisting("pageError");
2013-04-07 18:04:09 +00:00
}
2013-07-11 20:33:28 +00:00
2013-12-21 13:10:15 +00:00
// Check if content directory exists
function isContentDirectory($location)
{
$path = $this->toolbox->findFileFromLocation($location,
$this->config->get("contentDir"), $this->config->get("contentHomeDir"), "", "");
return is_dir($path);
}
2013-12-11 14:13:38 +00:00
// Execute template
2013-07-11 20:33:28 +00:00
function template($name)
{
$fileNameTemplate = $this->config->get("templateDir")."$name.php";
if(is_file($fileNameTemplate))
{
global $yellow;
require($fileNameTemplate);
} else {
$this->page->error(500, "Template '$name' does not exist!");
}
}
2013-12-11 14:13:38 +00:00
// Execute code snippet
function snippet($name, $args = NULL)
2013-04-07 18:04:09 +00:00
{
2013-07-16 16:56:27 +00:00
$this->pages->snippetArgs = func_get_args();
2013-06-27 17:00:03 +00:00
$fileNameSnippet = $this->config->get("snippetDir")."$name.php";
2013-07-11 20:33:28 +00:00
if(is_file($fileNameSnippet))
{
global $yellow;
require($fileNameSnippet);
} else {
$this->page->error(500, "Snippet '$name' does not exist!");
}
2013-04-07 18:04:09 +00:00
}
2013-04-14 22:41:04 +00:00
2013-12-11 14:13:38 +00:00
// Return snippet arguments
function getSnippetArgs()
{
2013-07-16 16:56:27 +00:00
return $this->pages->snippetArgs;
}
2013-07-11 20:33:28 +00:00
// Return extra HTML header lines
2013-04-07 18:04:09 +00:00
function getHeaderExtra()
{
2013-04-14 22:41:04 +00:00
$header = "";
2013-04-07 18:04:09 +00:00
foreach($this->plugins->plugins as $key=>$value)
2013-04-14 22:41:04 +00:00
{
2013-04-07 18:04:09 +00:00
if(method_exists($value["obj"], "onHeaderExtra")) $header .= $value["obj"]->onHeaderExtra();
2013-04-14 22:41:04 +00:00
}
return $header;
}
2013-12-11 14:13:38 +00:00
// Execute plugin command
2013-06-07 20:01:12 +00:00
function plugin($name, $args = NULL)
{
$statusCode = 0;
2013-07-11 20:33:28 +00:00
if($this->plugins->isExisting($name))
{
$plugin = $this->plugins->plugins[$name];
if(method_exists($plugin["obj"], "onCommand")) $statusCode = $plugin["obj"]->onCommand(func_get_args());
} else {
$statusCode = 500;
$this->page->error($statusCode, "Plugin '$name' does not exist!");
2013-07-11 20:33:28 +00:00
}
2013-06-07 20:01:12 +00:00
return $statusCode;
}
2013-04-14 22:41:04 +00:00
// Register plugin
2013-04-07 18:04:09 +00:00
function registerPlugin($name, $class, $version)
{
2013-04-14 22:41:04 +00:00
$this->plugins->register($name, $class, $version);
2013-04-07 18:04:09 +00:00
}
}
2013-05-01 20:16:05 +00:00
2013-04-07 18:04:09 +00:00
// Yellow page data
2013-12-01 11:59:07 +00:00
class YellowPage
2013-04-07 18:04:09 +00:00
{
2013-07-11 20:33:28 +00:00
var $yellow; //access to API
2013-07-16 16:56:27 +00:00
var $location; //page location
2013-05-01 20:16:05 +00:00
var $fileName; //content file name
2013-06-27 17:00:03 +00:00
var $rawData; //raw data of page
2013-07-11 20:33:28 +00:00
var $metaDataOffsetBytes; //meta data offset
2013-10-16 21:11:24 +00:00
var $metaData; //meta data
var $headerData; //response header
var $parser; //content parser
2013-07-11 20:33:28 +00:00
var $active; //page is active location? (boolean)
var $visible; //page is visible location? (boolean)
var $cacheable; //page is cacheable? (boolean)
2013-10-16 21:11:24 +00:00
var $statusCode; //status code
function __construct($yellow, $location)
2013-04-14 22:41:04 +00:00
{
2013-07-11 20:33:28 +00:00
$this->yellow = $yellow;
2013-07-16 16:56:27 +00:00
$this->location = $location;
$this->metaData = array();
$this->headerData = array();
$this->statusCode = 0;
}
// Parse page data
function parseData($fileName, $rawData, $cacheable, $statusCode, $pageError = "")
{
2013-04-14 22:41:04 +00:00
$this->fileName = $fileName;
2013-07-11 20:33:28 +00:00
$this->rawData = $rawData;
$this->active = $this->yellow->toolbox->isActiveLocation($this->yellow->pages->serverBase, $this->location,
$this->yellow->page->location);
$this->visible = $this->yellow->toolbox->isVisibleLocation($this->yellow->pages->serverBase, $this->location,
$fileName, $this->yellow->config->get("contentDir"));
2013-07-11 20:33:28 +00:00
$this->cacheable = $cacheable;
$this->statusCode = $statusCode;
if(!empty($pageError)) $this->error($statusCode, $pageError);
$this->parseMeta();
2013-04-14 22:41:04 +00:00
}
2013-07-11 20:33:28 +00:00
// Parse page meta data
function parseMeta()
2013-04-07 18:04:09 +00:00
{
2013-10-16 21:11:24 +00:00
$fileDate = date("c", is_readable($this->fileName) ? filemtime($this->fileName) : 0);
$this->set("modified", $fileDate);
$this->set("published", $fileDate);
2013-07-11 20:33:28 +00:00
$this->set("title", $this->yellow->toolbox->createTextTitle($this->location));
$this->set("sitename", $this->yellow->config->get("sitename"));
2013-07-11 20:33:28 +00:00
$this->set("author", $this->yellow->config->get("author"));
$this->set("language", $this->yellow->config->get("language"));
$this->set("template", $this->yellow->config->get("template"));
$this->set("style", $this->yellow->config->get("style"));
$this->set("parser", $this->yellow->config->get("parser"));
2013-07-11 20:33:28 +00:00
if(preg_match("/^(\-\-\-[\r\n]+)(.+?)([\r\n]+\-\-\-[\r\n]+)/s", $this->rawData, $parsed))
2013-04-14 22:41:04 +00:00
{
2013-07-11 20:33:28 +00:00
$this->metaDataOffsetBytes = strlenb($parsed[0]);
2013-09-17 09:18:01 +00:00
foreach(preg_split("/[\r\n]+/", $parsed[2]) as $line)
{
preg_match("/^\s*(.*?)\s*:\s*(.*?)\s*$/", $line, $matches);
if(!empty($matches[1]) && !empty($matches[2])) $this->set(lcfirst($matches[1]), $matches[2]);
}
2013-07-11 20:33:28 +00:00
} else if(preg_match("/^([^\r\n]+)([\r\n]+=+[\r\n]+)/", $this->rawData, $parsed)) {
$this->metaDataOffsetBytes = strlenb($parsed[0]);
2013-04-14 22:41:04 +00:00
$this->set("title", $parsed[1]);
}
2013-09-17 09:18:01 +00:00
$titleHeader = $this->location!="/" ? $this->get("title")." - ".$this->get("sitename") : $this->get("sitename");
if(!$this->isExisting("titleHeader")) $this->set("titleHeader", $titleHeader);
if(!$this->isExisting("titleNavigation")) $this->set("titleNavigation", $this->get("title"));
2013-12-11 14:13:38 +00:00
$this->set("pageRead", $this->yellow->toolbox->getHttpUrl($this->yellow->config->get("serverName"),
$this->yellow->config->get("serverBase"), $this->location));
$this->set("pageEdit", $this->yellow->toolbox->getHttpUrl($this->yellow->config->get("serverName"),
$this->yellow->config->get("serverBase"), rtrim($this->yellow->config->get("webinterfaceLocation"), '/').$this->location));
2013-09-17 09:18:01 +00:00
foreach($this->yellow->plugins->plugins as $key=>$value)
{
if(method_exists($value["obj"], "onParseMeta"))
{
$output = $value["obj"]->onParseMeta($this, $this->rawData);
2013-10-16 21:11:24 +00:00
if(!is_null($output)) break;
2013-09-17 09:18:01 +00:00
}
}
2013-10-16 21:11:24 +00:00
}
// Parse page update if necessary
function parseUpdate()
{
if($this->statusCode == 0)
{
2013-10-16 21:11:24 +00:00
$fileHandle = @fopen($this->fileName, "r");
if($fileHandle)
{
$this->statusCode = 200;
$this->rawData = fread($fileHandle, filesize($this->fileName));
$this->metaData = array();
fclose($fileHandle);
$this->parseMeta();
}
2013-12-01 11:59:07 +00:00
if(defined("DEBUG") && DEBUG>=2) echo "YellowPage::parseUpdate location:".$this->location."<br/>\n";
}
2013-04-07 18:04:09 +00:00
}
2013-05-01 20:16:05 +00:00
2013-07-11 20:33:28 +00:00
// Parse page content
2013-05-01 20:16:05 +00:00
function parseContent()
{
2013-09-17 09:18:01 +00:00
if(!is_object($this->parser))
2013-05-01 20:16:05 +00:00
{
2013-09-17 09:18:01 +00:00
$this->parser = new stdClass;
if($this->yellow->plugins->isExisting($this->get("parser")))
{
2013-12-21 13:10:15 +00:00
$plugin = $this->yellow->plugins->plugins[$this->get("parser")];
if(method_exists($plugin["obj"], "onParse"))
{
$this->parser = $plugin["obj"];
$this->parser->onParse($this->getContent(true));
$location = $this->yellow->toolbox->getDirectoryLocation($this->getLocation());
$this->parser->textHtml = preg_replace("#<a(.*?)href=\"(?!javascript:)([^\/\"]+)\"(.*?)>#",
"<a$1href=\"$location$2\"$3>", $this->parser->textHtml);
}
2013-09-17 09:18:01 +00:00
}
2013-07-11 20:33:28 +00:00
foreach($this->yellow->plugins->plugins as $key=>$value)
2013-05-01 20:16:05 +00:00
{
2013-08-28 10:01:46 +00:00
if(method_exists($value["obj"], "onParseContent"))
{
2013-09-17 09:18:01 +00:00
$output = $value["obj"]->onParseContent($this, $this->parser->textHtml);
if(!is_null($output)) { $this->parser->textHtml = $output; break; }
2013-08-28 10:01:46 +00:00
}
2013-05-01 20:16:05 +00:00
}
if(!$this->isExisting("description"))
{
2013-08-28 10:01:46 +00:00
$this->set("description", $this->yellow->toolbox->createTextDescription($this->parser->textHtml, 150));
2013-05-01 20:16:05 +00:00
}
if(!$this->isExisting("keywords"))
{
2013-07-11 20:33:28 +00:00
$this->set("keywords", $this->yellow->toolbox->createTextKeywords($this->get("title"), 10));
2013-05-01 20:16:05 +00:00
}
2013-12-01 11:59:07 +00:00
if(defined("DEBUG") && DEBUG>=2) echo "YellowPage::parseContent location:".$this->location."<br/>\n";
2013-05-01 20:16:05 +00:00
}
}
2013-07-11 20:33:28 +00:00
2013-08-28 10:01:46 +00:00
// Parse custom type
function parseType($name, $text, $typeShortcut)
{
$output = NULL;
foreach($this->yellow->plugins->plugins as $key=>$value)
{
if(method_exists($value["obj"], "onParseType"))
{
$output = $value["obj"]->onParseType($name, $text, $typeShortcut);
if(!is_null($output)) break;
}
}
2013-12-11 14:13:38 +00:00
if(defined("DEBUG") && DEBUG>=2 && !empty($name)) echo "YellowPage::parseType name:$name shortcut:$typeShortcut<br/>\n";
2013-08-28 10:01:46 +00:00
return $output;
}
2013-07-11 20:33:28 +00:00
// Respond with error page
function error($statusCode, $pageError = "")
2013-07-11 20:33:28 +00:00
{
2013-11-29 12:16:14 +00:00
if(!$this->isExisting("pageError") && $statusCode>0)
{
$this->statusCode = $statusCode;
$this->set("pageError", empty($pageError) ? "Template/snippet error!" : $pageError);
}
}
// Respond without page content
function clean($statusCode, $responseHeader = "")
{
if(!$this->isExisting("pageClean") && $statusCode>0)
2013-07-11 20:33:28 +00:00
{
$this->statusCode = $statusCode;
2013-11-29 12:16:14 +00:00
$this->headerData = array();
2013-12-11 14:13:38 +00:00
if(!empty($responseHeader)) $this->header($responseHeader);
2013-11-29 12:16:14 +00:00
$this->set("pageClean", (string)$statusCode);
2013-07-11 20:33:28 +00:00
}
}
2013-12-11 14:13:38 +00:00
// Add page response header, HTTP format
function header($responseHeader)
{
$tokens = explode(':', $responseHeader, 2);
$this->setHeader(trim($tokens[0]), trim($tokens[1]));
}
// Set page response header
function setHeader($key, $value)
{
$this->headerData[$key] = $value;
}
// Return page response header
function getHeader($key)
{
return $this->isHeader($key) ? $this->headerData[$key] : "";
}
2013-04-14 22:41:04 +00:00
// Set page meta data
2013-04-07 18:04:09 +00:00
function set($key, $value)
{
$this->metaData[$key] = $value;
}
2013-04-14 22:41:04 +00:00
// Return page meta data
2013-04-07 18:04:09 +00:00
function get($key)
{
return $this->isExisting($key) ? $this->metaData[$key] : "";
2013-04-07 18:04:09 +00:00
}
2013-04-14 22:41:04 +00:00
// Return page meta data, HTML encoded
2013-04-07 18:04:09 +00:00
function getHtml($key)
{
return htmlspecialchars($this->get($key));
}
2013-10-16 21:11:24 +00:00
// Return page content, HTML encoded or raw format
function getContent($rawFormat = false)
2013-04-14 22:41:04 +00:00
{
2013-10-16 21:11:24 +00:00
if($rawFormat)
{
$this->parseUpdate();
$text = substrb($this->rawData, $this->metaDataOffsetBytes);
} else {
$this->parseContent();
$text = $this->parser->textHtml;
}
return $text;
2013-04-14 22:41:04 +00:00
}
2013-06-27 17:00:03 +00:00
// Return absolute page location
2013-04-14 22:41:04 +00:00
function getLocation()
{
return $this->yellow->pages->serverBase.$this->location;
2013-04-14 22:41:04 +00:00
}
2013-11-29 12:16:14 +00:00
// Return full page URL, with server name
function getUrl()
{
return $this->yellow->toolbox->getHttpUrl($this->yellow->config->get("serverName"),
$this->yellow->pages->serverBase, $this->location);
}
2013-06-27 17:00:03 +00:00
// Return page modification time, Unix time
function getModified($httpFormat = false)
2013-05-01 20:16:05 +00:00
{
$modified = strtotime($this->get("modified"));
return $httpFormat ? $this->yellow->toolbox->getHttpTimeFormatted($modified) : $modified;
2013-05-01 20:16:05 +00:00
}
// Return page status code
function getStatusCode($httpFormat = false)
{
$statusCode = $this->statusCode;
if($httpFormat)
{
$statusCode = $this->yellow->toolbox->getHttpStatusFormatted($statusCode);
if($this->isExisting("pageError")) $statusCode .= ": ".$this->get("pageError");
}
return $statusCode;
}
// Return parent page relative to current page
function getParent()
2013-05-01 20:16:05 +00:00
{
$parentLocation = $this->yellow->pages->getParentLocation($this->location);
return $this->yellow->pages->find($parentLocation, false)->first();
}
// Return top-level parent page of current page
function getParentTop()
{
$parentTopLocation = $this->yellow->pages->getParentTopLocation($this->location);
return $this->yellow->pages->find($parentTopLocation, false)->first();
2013-05-01 20:16:05 +00:00
}
// Return pages on the same level as current page
2013-07-11 20:33:28 +00:00
function getSiblings($showHidden = false)
2013-05-01 20:16:05 +00:00
{
2013-07-11 20:33:28 +00:00
$parentLocation = $this->yellow->pages->getParentLocation($this->location);
return $this->yellow->pages->findChildren($parentLocation, $showHidden);
2013-05-01 20:16:05 +00:00
}
// Return child pages relative to current page
function getChildren($showHidden = false)
2013-05-01 20:16:05 +00:00
{
return $this->yellow->pages->findChildren($this->location, $showHidden);
2013-05-01 20:16:05 +00:00
}
// Check if response header exists
function isHeader($key)
{
return !is_null($this->headerData[$key]);
}
2013-07-11 20:33:28 +00:00
2013-04-14 22:41:04 +00:00
// Check if meta data exists
function isExisting($key)
{
return !is_null($this->metaData[$key]);
}
2013-05-01 20:16:05 +00:00
// Check if page is within current HTTP request
2013-04-14 22:41:04 +00:00
function isActive()
{
return $this->active;
}
2013-07-11 20:33:28 +00:00
// Check if page is visible in navigation
function isVisible()
{
return $this->visible;
}
// Check if page is cacheable
function isCacheable()
2013-04-14 22:41:04 +00:00
{
2013-07-11 20:33:28 +00:00
return $this->cacheable;
2013-04-14 22:41:04 +00:00
}
2013-04-07 18:04:09 +00:00
}
2013-05-01 20:16:05 +00:00
// Yellow page collection as array
2013-12-01 11:59:07 +00:00
class YellowPageCollection extends ArrayObject
2013-04-07 18:04:09 +00:00
{
2013-07-16 16:56:27 +00:00
var $yellow; //access to API
2013-05-01 20:16:05 +00:00
var $paginationPage; //current page number in pagination
var $paginationCount; //highest page number in pagination
2013-04-14 22:41:04 +00:00
2013-10-16 21:11:24 +00:00
function __construct($yellow)
2013-04-14 22:41:04 +00:00
{
parent::__construct(array());
2013-07-16 16:56:27 +00:00
$this->yellow = $yellow;
}
2013-04-14 22:41:04 +00:00
2013-05-01 20:16:05 +00:00
// Filter page collection by meta data
function filter($key, $value, $exactMatch = true)
2013-04-14 22:41:04 +00:00
{
2013-05-01 20:16:05 +00:00
if(!empty($key))
2013-04-14 22:41:04 +00:00
{
2013-05-01 20:16:05 +00:00
$array = array();
$value = strtoloweru($value);
$valueLength = strlenu($value);
foreach($this->getArrayCopy() as $page)
2013-04-14 22:41:04 +00:00
{
2013-05-01 20:16:05 +00:00
if($page->isExisting($key))
{
foreach(preg_split("/,\s*/", strtoloweru($page->get($key))) as $valuePage)
{
$length = $exactMatch ? strlenu($valuePage) : $valueLength;
if($value == substru($valuePage, 0, $length)) array_push($array, $page);
}
}
2013-04-14 22:41:04 +00:00
}
2013-05-01 20:16:05 +00:00
$this->exchangeArray($array);
2013-04-14 22:41:04 +00:00
}
2013-05-01 20:16:05 +00:00
return $this;
}
// Sort page collection by meta data
function sort($key, $ascendingOrder = true)
{
$callback = function($a, $b) use ($key, $ascendingOrder)
{
return $ascendingOrder ?
strnatcasecmp($a->get($key), $b->get($key)) :
strnatcasecmp($b->get($key), $a->get($key));
};
$array = $this->getArrayCopy();
usort($array, $callback);
$this->exchangeArray($array);
return $this;
}
2013-05-01 20:16:05 +00:00
2013-07-16 16:56:27 +00:00
// Merge page collection
function merge($input)
{
$this->exchangeArray(array_merge($this->getArrayCopy(), (array)$input));
return $this;
}
2013-09-17 09:18:01 +00:00
// Append to end of page collection
function append($page)
{
parent::append($page);
return $this;
}
// Prepend to start of page collection
function prepend($page)
{
$array = $this->getArrayCopy();
array_unshift($array, $page);
$this->exchangeArray($array);
return $this;
}
// Limit the number of pages in page collection
function limit($pagesMax)
{
$this->exchangeArray(array_slice($this->getArrayCopy(), 0, $pagesMax));
return $this;
}
2013-05-01 20:16:05 +00:00
// Reverse page collection
function reverse()
2013-05-01 20:16:05 +00:00
{
$this->exchangeArray(array_reverse($this->getArrayCopy()));
return $this;
}
// Paginate page collection
function pagination($limit, $reverse = true)
{
$array = $this->getArrayCopy();
if($reverse) $array = array_reverse($array);
$this->paginationPage = 1;
$this->paginationCount = ceil($this->count() / $limit);
if($limit < $this->count() && isset($_REQUEST["page"])) $this->paginationPage = max(1, $_REQUEST["page"]);
$this->exchangeArray(array_slice($array, ($this->paginationPage - 1) * $limit, $limit));
return $this;
}
// Return current page number in pagination
function getPaginationPage()
{
2013-07-11 20:33:28 +00:00
return $this->paginationPage;
2013-05-01 20:16:05 +00:00
}
// Return highest page number in pagination
function getPaginationCount()
{
return $this->paginationCount;
2013-04-14 22:41:04 +00:00
}
2013-06-27 17:00:03 +00:00
// Return absolute location for a page in pagination
2013-05-01 20:16:05 +00:00
function getLocationPage($pageNumber)
2013-04-14 22:41:04 +00:00
{
2013-05-01 20:16:05 +00:00
if($pageNumber>=1 && $pageNumber<=$this->paginationCount)
2013-04-14 22:41:04 +00:00
{
2013-12-21 13:10:15 +00:00
$location = $this->yellow->page->getLocation();
$locationArgs = $this->yellow->toolbox->getLocationArgs($location, $pageNumber>1 ? "page:$pageNumber" : "page:");
2013-04-14 22:41:04 +00:00
}
2013-12-21 13:10:15 +00:00
return $location.$locationArgs;
2013-04-14 22:41:04 +00:00
}
2013-06-27 17:00:03 +00:00
// Return absolute location for previous page in pagination
2013-05-01 20:16:05 +00:00
function getLocationPrevious()
{
$pageNumber = $this->paginationPage;
$pageNumber = ($pageNumber>1 && $pageNumber<=$this->paginationCount) ? $pageNumber-1 : 0;
return $this->getLocationPage($pageNumber);
}
2013-06-27 17:00:03 +00:00
// Return absolute location for next page in pagination
2013-05-01 20:16:05 +00:00
function getLocationNext()
{
$pageNumber = $this->paginationPage;
$pageNumber = ($pageNumber>=1 && $pageNumber<$this->paginationCount) ? $pageNumber+1 : 0;
return $this->getLocationPage($pageNumber);
}
2013-06-27 17:00:03 +00:00
// Return last modification time for page collection, Unix time
function getModified($httpFormat = false)
{
$modified = 0;
foreach($this->getIterator() as $page) $modified = max($modified, $page->getModified());
2013-07-16 16:56:27 +00:00
return $httpFormat ? $this->yellow->toolbox->getHttpTimeFormatted($modified) : $modified;
2013-06-27 17:00:03 +00:00
}
// Return first page in page collection
function first()
{
return $this->offsetGet(0);
}
2013-05-01 20:16:05 +00:00
// Return last page in page collection
function last()
{
return $this->offsetGet($this->count()-1);
}
2013-05-01 20:16:05 +00:00
// Check if there is an active pagination
function isPagination()
{
return $this->paginationCount > 1;
}
}
// Yellow page tree from file system
2013-12-01 11:59:07 +00:00
class YellowPages
2013-04-07 18:04:09 +00:00
{
var $yellow; //access to API
var $pages; //scanned pages
var $requestHandler; //request handler
var $serverBase; //requested server base
var $snippetArgs; //requested snippet arguments
2013-05-01 20:16:05 +00:00
2013-07-16 16:56:27 +00:00
function __construct($yellow)
2013-04-14 22:41:04 +00:00
{
2013-07-11 20:33:28 +00:00
$this->yellow = $yellow;
2013-11-29 12:16:14 +00:00
$this->pages = array();
2013-05-01 20:16:05 +00:00
}
2013-09-17 09:18:01 +00:00
// Return empty page collection
function create()
{
2013-12-01 11:59:07 +00:00
return new YellowPageCollection($this->yellow);
2013-09-17 09:18:01 +00:00
}
2013-07-16 16:56:27 +00:00
// Return pages from file system
function index($showHidden = false, $levelMax = 0)
{
return $this->findChildrenRecursive("", $showHidden, $levelMax);
}
2013-05-01 20:16:05 +00:00
// Return page collection with top-level navigation
function top($showHidden = false)
2013-05-01 20:16:05 +00:00
{
2013-07-11 20:33:28 +00:00
return $this->findChildren("", $showHidden);
2013-05-01 20:16:05 +00:00
}
2013-09-17 09:18:01 +00:00
// Return page collection with path ancestry
function path($location, $absoluteLocation = false)
{
if($absoluteLocation) $location = substru($location, strlenu($this->serverBase));
$pages = $this->find($location, false);
for($page=$pages->first(); $page; $page=$parent)
{
if($parent = $page->getParent()) $pages->prepend($parent);
else if($page->location!="/" && $home = $this->find("/", false)->first()) $pages->prepend($home);
}
return $pages;
}
// Return page collection with a specific page
2013-07-16 16:56:27 +00:00
function find($location, $absoluteLocation = false)
{
if($absoluteLocation) $location = substru($location, strlenu($this->serverBase));
2013-07-16 16:56:27 +00:00
$parentLocation = $this->getParentLocation($location);
$this->scanChildren($parentLocation);
2013-12-01 11:59:07 +00:00
$pages = new YellowPageCollection($this->yellow);
2013-09-17 09:18:01 +00:00
foreach($this->pages[$parentLocation] as $page) if($page->location == $location) { $pages->append($page); break; }
return $pages;
2013-07-16 16:56:27 +00:00
}
2013-05-01 20:16:05 +00:00
2013-07-16 16:56:27 +00:00
// Find child pages
2013-07-11 20:33:28 +00:00
function findChildren($location, $showHidden = false)
2013-05-01 20:16:05 +00:00
{
$this->scanChildren($location);
2013-12-01 11:59:07 +00:00
$pages = new YellowPageCollection($this->yellow);
2013-07-11 20:33:28 +00:00
foreach($this->pages[$location] as $page) if($page->isVisible() || $showHidden) $pages->append($page);
2013-05-01 20:16:05 +00:00
return $pages;
2013-04-14 22:41:04 +00:00
}
2013-07-16 16:56:27 +00:00
// Find child pages recursively
function findChildrenRecursive($location, $showHidden = false, $levelMax = 0)
2013-04-14 22:41:04 +00:00
{
2013-07-16 16:56:27 +00:00
--$levelMax;
$this->scanChildren($location);
2013-12-01 11:59:07 +00:00
$pages = new YellowPageCollection($this->yellow);
2013-07-16 16:56:27 +00:00
foreach($this->pages[$location] as $page)
{
if($page->isVisible() || $showHidden)
{
$pages->append($page);
if(!$this->yellow->toolbox->isFileLocation($page->location) && $levelMax!=0)
{
$pages->merge($this->findChildrenRecursive($page->location, $showHidden, $levelMax));
}
}
}
return $pages;
2013-05-01 20:16:05 +00:00
}
// Scan child pages on demand
function scanChildren($location)
{
if(is_null($this->pages[$location]))
{
2013-12-01 11:59:07 +00:00
if(defined("DEBUG") && DEBUG>=2) echo "YellowPages::scanChildren location:$location<br/>\n";
2013-05-01 20:16:05 +00:00
$this->pages[$location] = array();
2013-07-11 20:33:28 +00:00
$path = $this->yellow->config->get("contentDir");
2013-05-01 20:16:05 +00:00
if(!empty($location))
{
2013-07-11 20:33:28 +00:00
$path = $this->yellow->toolbox->findFileFromLocation($location,
$this->yellow->config->get("contentDir"), $this->yellow->config->get("contentHomeDir"), "", "");
2013-05-01 20:16:05 +00:00
}
$fileNames = array();
2013-07-11 20:33:28 +00:00
foreach($this->yellow->toolbox->getDirectoryEntries($path, "/.*/", true) as $entry)
2013-05-01 20:16:05 +00:00
{
$fileDefault = $this->yellow->config->get("contentDefaultFile");
if(!is_file($path.$entry."/".$fileDefault))
{
$regex = "/^[\d\-\_\.]*".strreplaceu('-', '.', $fileDefault)."$/";
foreach($this->yellow->toolbox->getDirectoryEntries($path.$entry, $regex, false, false) as $entry2)
{
if($this->yellow->toolbox->normaliseName($entry2) == $fileDefault) { $fileDefault = $entry2; break; }
}
}
array_push($fileNames, $path.$entry."/".$fileDefault);
2013-05-01 20:16:05 +00:00
}
$regex = "/.*\\".$this->yellow->config->get("contentExtension")."/";
foreach($this->yellow->toolbox->getDirectoryEntries($path, $regex, true, false) as $entry)
2013-05-01 20:16:05 +00:00
{
$token = $this->yellow->toolbox->normaliseName($entry);
if($token != $this->yellow->config->get("contentDefaultFile")) array_push($fileNames, $path.$entry);
2013-05-01 20:16:05 +00:00
}
foreach($fileNames as $fileName)
{
$fileHandle = @fopen($fileName, "r");
if($fileHandle)
{
$fileData = fread($fileHandle, 4096);
2013-10-16 21:11:24 +00:00
$statusCode = filesize($fileName) <= 4096 ? 200 : 0;
2013-05-01 20:16:05 +00:00
fclose($fileHandle);
} else {
$fileData = "";
2013-10-16 21:11:24 +00:00
$statusCode = 0;
2013-05-01 20:16:05 +00:00
}
2013-12-01 11:59:07 +00:00
$page = new YellowPage($this->yellow, $this->yellow->toolbox->findLocationFromFile($fileName,
$this->yellow->config->get("contentDir"), $this->yellow->config->get("contentHomeDir"),
$this->yellow->config->get("contentDefaultFile"), $this->yellow->config->get("contentExtension")));
2013-10-16 21:11:24 +00:00
$page->parseData($fileName, $fileData, false, $statusCode);
2013-05-01 20:16:05 +00:00
array_push($this->pages[$location], $page);
}
}
2013-04-14 22:41:04 +00:00
}
2013-07-16 16:56:27 +00:00
// Return parent location
2013-05-01 20:16:05 +00:00
function getParentLocation($location)
{
$parentLocation = "";
if(preg_match("/^(.*\/).+?$/", $location, $matches))
{
if($matches[1]!="/" || $this->yellow->toolbox->isFileLocation($location)) $parentLocation = $matches[1];
}
2013-05-01 20:16:05 +00:00
return $parentLocation;
}
// Return top-level parent location
function getParentTopLocation($location)
{
$parentTopLocation = "/";
if(preg_match("/^(.+?\/)/", $location, $matches)) $parentTopLocation = $matches[1];
return $parentTopLocation;
}
2013-05-01 20:16:05 +00:00
}
2013-11-29 12:16:14 +00:00
// Yellow configuration
2013-12-01 11:59:07 +00:00
class YellowConfig
2013-11-29 12:16:14 +00:00
{
var $yellow; //access to API
var $modified; //configuration modification time
var $config; //configuration
var $configDefaults; //configuration defaults
function __construct($yellow)
{
$this->yellow = $yellow;
$this->modified = 0;
$this->config = array();
$this->configDefaults = array();
}
// Load configuration from file
function load($fileName)
{
$fileData = @file($fileName);
if($fileData)
{
2013-12-01 11:59:07 +00:00
if(defined("DEBUG") && DEBUG>=2) echo "YellowConfig::load file:$fileName<br/>\n";
2013-11-29 12:16:14 +00:00
$this->modified = filemtime($fileName);
foreach($fileData as $line)
{
if(preg_match("/^\//", $line)) continue;
preg_match("/^\s*(.*?)\s*=\s*(.*?)\s*$/", $line, $matches);
if(!empty($matches[1]) && !strempty($matches[2]))
{
$this->set($matches[1], $matches[2]);
2013-12-01 11:59:07 +00:00
if(defined("DEBUG") && DEBUG>=3) echo "YellowConfig::load key:$matches[1] $matches[2]<br/>\n";
2013-11-29 12:16:14 +00:00
}
}
}
}
// Set default configuration
function setDefault($key, $value)
{
$this->configDefaults[$key] = $value;
}
// Set configuration
function set($key, $value)
{
$this->config[$key] = $value;
}
// Return configuration
function get($key)
{
return $this->isExisting($key) ? $this->config[$key] : $this->configDefaults[$key];
}
// Return configuration, HTML encoded
function getHtml($key)
{
return htmlspecialchars($this->get($key));
}
// Return configuration strings
function getData($filterEnd = "")
{
$config = array();
if(empty($filterEnd))
{
$config = $this->config;
} else {
foreach($this->config as $key=>$value)
{
if(substru($key, -strlenu($filterEnd)) == $filterEnd) $config[$key] = $value;
}
}
return $config;
}
// Return configuration modification time, Unix time
function getModified($httpFormat = false)
{
return $httpFormat ? $this->yellow->toolbox->getHttpTimeFormatted($this->modified) : $this->modified;
}
// Check if configuration exists
function isExisting($key)
{
return !is_null($this->config[$key]);
}
}
// Yellow text strings
2013-12-01 11:59:07 +00:00
class YellowText
2013-11-29 12:16:14 +00:00
{
var $yellow; //access to API
var $modified; //text modification time
var $text; //text strings
var $language; //current language
function __construct($yellow)
{
$this->yellow = $yellow;
$this->modified = 0;
$this->text = array();
}
// Load text strings from file
function load($fileName)
{
$path = dirname($fileName);
$regex = "/".basename($fileName)."/";
foreach($this->yellow->toolbox->getDirectoryEntries($path, $regex, true, false) as $entry)
{
$fileData = @file("$path/$entry");
if($fileData)
{
2013-12-01 11:59:07 +00:00
if(defined("DEBUG") && DEBUG>=2) echo "YellowText::load file:$path/$entry<br/>\n";
2013-11-29 12:16:14 +00:00
$this->modified = max($this->modified, filemtime("$path/$entry"));
$language = "";
foreach($fileData as $line)
{
preg_match("/^\s*(.*?)\s*=\s*(.*?)\s*$/", $line, $matches);
if($matches[1]=="language" && !empty($matches[2])) { $language = $matches[2]; break; }
}
foreach($fileData as $line)
{
if(preg_match("/^\//", $line)) continue;
preg_match("/^\s*(.*?)\s*=\s*(.*?)\s*$/", $line, $matches);
if(!empty($language) && !empty($matches[1]) && !strempty($matches[2]))
{
2013-12-11 14:13:38 +00:00
$this->setText($matches[1], $matches[2], $language);
2013-12-01 11:59:07 +00:00
if(defined("DEBUG") && DEBUG>=3) echo "YellowText::load key:$matches[1] $matches[2]<br/>\n";
2013-11-29 12:16:14 +00:00
}
}
}
}
}
// Set current language
function setLanguage($language)
{
$this->language = $language;
}
// Set text string for specific language
2013-12-11 14:13:38 +00:00
function setText($key, $value, $language)
2013-11-29 12:16:14 +00:00
{
if(is_null($this->text[$language])) $this->text[$language] = array();
$this->text[$language][$key] = $value;
}
// Return text string for specific language
2013-12-11 14:13:38 +00:00
function getText($key, $language)
2013-11-29 12:16:14 +00:00
{
2013-12-11 14:13:38 +00:00
return ($this->isText($key, $language)) ? $this->text[$language][$key] : "[$key]";
2013-11-29 12:16:14 +00:00
}
// Return text string
function get($key)
{
return $this->isExisting($key) ? $this->text[$this->language][$key] : "[$key]";
}
// Return text string, HTML encoded
function getHtml($key)
{
return htmlspecialchars($this->get($key));
}
2013-12-11 14:13:38 +00:00
// Return text strings
function getData($filterStart = "", $language = "")
2013-11-29 12:16:14 +00:00
{
$text = array();
2013-12-11 14:13:38 +00:00
if(empty($language)) $language = $this->language;
2013-11-29 12:16:14 +00:00
if(!is_null($this->text[$language]))
{
if(empty($filterStart))
{
$text = $this->text[$language];
} else {
foreach($this->text[$language] as $key=>$value)
{
if(substru($key, 0, strlenu("language")) == "language") $text[$key] = $value;
if(substru($key, 0, strlenu($filterStart)) == $filterStart) $text[$key] = $value;
}
}
}
return $text;
}
// Return text modification time, Unix time
function getModified($httpFormat = false)
{
return $httpFormat ? $this->yellow->toolbox->getHttpTimeFormatted($this->modified) : $this->modified;
}
// Check if text string for specific language exists
2013-12-11 14:13:38 +00:00
function isText($key, $language)
2013-11-29 12:16:14 +00:00
{
return !is_null($this->text[$language]) && !is_null($this->text[$language][$key]);
}
// Check if text string exists
function isExisting($key)
{
return !is_null($this->text[$this->language]) && !is_null($this->text[$this->language][$key]);
}
}
2013-05-01 20:16:05 +00:00
// Yellow toolbox with helpers
2013-12-01 11:59:07 +00:00
class YellowToolbox
2013-05-01 20:16:05 +00:00
{
2013-06-07 20:01:12 +00:00
// Return server name from current HTTP request
2013-10-16 21:11:24 +00:00
function getServerName()
2013-04-14 22:41:04 +00:00
{
2013-06-07 20:01:12 +00:00
return $_SERVER["SERVER_NAME"];
}
// Return server base from current HTTP request
2013-10-16 21:11:24 +00:00
function getServerBase()
2013-06-07 20:01:12 +00:00
{
$serverBase = "";
2013-06-07 20:01:12 +00:00
if(preg_match("/^(.*)\//", $_SERVER["SCRIPT_NAME"], $matches)) $serverBase = $matches[1];
return $serverBase;
2013-04-14 22:41:04 +00:00
}
2013-05-01 20:16:05 +00:00
// Return location from current HTTP request
2013-10-16 21:11:24 +00:00
function getLocation()
2013-05-01 20:16:05 +00:00
{
$uri = $_SERVER["REQUEST_URI"];
return ($pos = strposu($uri, '?')) ? substru($uri, 0, $pos) : $uri;
}
2013-12-21 13:10:15 +00:00
// Return location from current HTTP request, remove unwanted path tokens and location arguments
function getLocationNormalised()
{
$string = rawurldecode($this->getLocation());
$location = ($string[0]=='/') ? '' : '/';
for($pos=0; $pos<strlenb($string); ++$pos)
{
if($string[$pos] == '/')
{
if($string[$pos+1] == '/') continue;
if($string[$pos+1] == '.')
{
$posNew = $pos+1; while($string[$posNew] == '.') ++$posNew;
if($string[$posNew]=='/' || $string[$posNew]=='')
{
$pos = $posNew-1;
continue;
}
}
}
$location .= $string[$pos];
}
if(preg_match("/^(.*?\/)([^\/]+:.*)$/", $location, $matches))
{
$location = $matches[1];
foreach(explode('/', $matches[2]) as $token)
{
preg_match("/^(.*?):(.*)$/", $token, $matches);
if(!empty($matches[1]) && !strempty($matches[2]))
{
$matches[1] = strreplaceu(array("\x1c", "\x1d"), array('/', ':'), $matches[1]);
$matches[2] = strreplaceu(array("\x1c", "\x1d"), array('/', ':'), $matches[2]);
$_REQUEST[$matches[1]] = $matches[2];
}
}
}
return $location;
}
2013-10-16 21:11:24 +00:00
// Return location arguments from current HTTP request
2013-12-21 13:10:15 +00:00
function getLocationArgs($location, $arg = "")
2013-05-01 20:16:05 +00:00
{
preg_match("/^(.*?):(.*)$/", $arg, $args);
2013-12-21 13:10:15 +00:00
if(preg_match("/^(.*?\/)([^\/]+:.*)$/", rawurldecode($this->getLocation()), $matches))
2013-05-01 20:16:05 +00:00
{
foreach(explode('/', $matches[2]) as $token)
{
preg_match("/^(.*?):(.*)$/", $token, $matches);
if($matches[1] == $args[1]) { $matches[2] = $args[2]; $found = true; }
2013-10-16 21:11:24 +00:00
if(!empty($matches[1]) && !strempty($matches[2]))
2013-05-01 20:16:05 +00:00
{
if(!empty($locationArgs)) $locationArgs .= '/';
$locationArgs .= "$matches[1]:$matches[2]";
}
}
}
2013-10-16 21:11:24 +00:00
if(!$found && !empty($args[1]) && !strempty($args[2]))
2013-05-01 20:16:05 +00:00
{
if(!empty($locationArgs)) $locationArgs .= '/';
$locationArgs .= "$args[1]:$args[2]";
2013-05-01 20:16:05 +00:00
}
2013-12-21 13:10:15 +00:00
if(!empty($locationArgs))
{
if($this->isFileLocation($location)) $locationArgs = '/'.$locationArgs;
$locationArgs = strreplaceu(array('%3A','%2F'), array(':','/'), rawurlencode($locationArgs));
}
2013-10-16 21:11:24 +00:00
return $locationArgs;
}
// Return location arguments from current HTTP request, convert form into clean URL
2013-12-21 13:10:15 +00:00
function getLocationArgsCleanUrl($location)
2013-10-16 21:11:24 +00:00
{
foreach(array_merge($_GET, $_POST) as $key=>$value)
2013-05-01 20:16:05 +00:00
{
2013-10-16 21:11:24 +00:00
if(!empty($key) && !strempty($value))
{
if(!empty($locationArgs)) $locationArgs .= '/';
$key = strreplaceu(array('/', ':'), array("\x1c", "\x1d"), $key);
$value = strreplaceu(array('/', ':'), array("\x1c", "\x1d"), $value);
$locationArgs .= "$key:$value";
}
2013-05-01 20:16:05 +00:00
}
2013-12-21 13:10:15 +00:00
if(!empty($locationArgs))
2013-05-01 20:16:05 +00:00
{
2013-12-21 13:10:15 +00:00
if($this->isFileLocation($location)) $locationArgs = '/'.$locationArgs;
$locationArgs = strreplaceu(array('%3A','%2F'), array(':','/'), rawurlencode($locationArgs));
2013-04-14 22:41:04 +00:00
}
2013-12-21 13:10:15 +00:00
return $locationArgs;
2013-04-14 22:41:04 +00:00
}
2013-12-21 13:10:15 +00:00
2013-10-16 21:11:24 +00:00
// Check if file is unmodified since last HTTP request
function isFileNotModified($lastModified)
{
return isset($_SERVER["HTTP_IF_MODIFIED_SINCE"]) && $_SERVER["HTTP_IF_MODIFIED_SINCE"]==$lastModified;
}
2013-04-14 22:41:04 +00:00
// Check if location is specifying file or directory
2013-10-16 21:11:24 +00:00
function isFileLocation($location)
2013-04-14 22:41:04 +00:00
{
2013-05-01 20:16:05 +00:00
return substru($location, -1, 1) != "/";
2013-04-14 22:41:04 +00:00
}
// Check if location is valid
2013-10-16 21:11:24 +00:00
function isValidLocation($location)
2013-07-11 20:33:28 +00:00
{
$string = "";
$tokens = explode('/', $location);
2013-12-21 13:10:15 +00:00
for($i=1; $i<count($tokens); ++$i) $string .= '/'.$this->normaliseName($tokens[$i]);
return $location == $string;
2013-07-11 20:33:28 +00:00
}
2013-04-14 22:41:04 +00:00
// Check if location is within current HTTP request
2013-10-16 21:11:24 +00:00
function isActiveLocation($serverBase, $location, $currentLocation)
2013-04-14 22:41:04 +00:00
{
if($location != "/")
{
2013-05-01 20:16:05 +00:00
$active = substru($currentLocation, 0, strlenu($location))==$location;
2013-04-14 22:41:04 +00:00
} else {
$active = $currentLocation==$location;
}
return $active;
}
2013-07-11 20:33:28 +00:00
// Check if location is visible in navigation
2013-10-16 21:11:24 +00:00
function isVisibleLocation($serverBase, $location, $fileName, $pathBase)
2013-04-14 22:41:04 +00:00
{
2013-07-11 20:33:28 +00:00
$visible = true;
2013-05-01 20:16:05 +00:00
if(substru($fileName, 0, strlenu($pathBase)) == $pathBase) $fileName = substru($fileName, strlenu($pathBase));
2013-04-14 22:41:04 +00:00
$tokens = explode('/', $fileName);
for($i=0; $i<count($tokens)-1; ++$i)
{
2013-09-17 09:18:01 +00:00
if(!preg_match("/^[\d\-\_\.]+(.*)$/", $tokens[$i])) { $visible = false; break; }
2013-04-14 22:41:04 +00:00
}
2013-07-11 20:33:28 +00:00
return $visible;
2013-04-14 22:41:04 +00:00
}
2013-04-14 22:41:04 +00:00
// Find file path from location
2013-10-16 21:11:24 +00:00
function findFileFromLocation($location, $pathBase, $pathHome, $fileDefault, $fileExtension)
2013-04-14 22:41:04 +00:00
{
$path = $pathBase;
2013-05-01 20:16:05 +00:00
$tokens = explode('/', $location);
if(count($tokens) > 2)
2013-04-14 22:41:04 +00:00
{
if($tokens[1]."/" == $pathHome) $invalid = true;
2013-04-14 22:41:04 +00:00
for($i=1; $i<count($tokens)-1; ++$i)
{
$token = $tokens[$i];
2013-12-21 13:10:15 +00:00
if($this->normaliseName($token) != $token) $invalid = true;
$regex = "/^[\d\-\_\.]*".strreplaceu('-', '.', $token)."$/";
2013-12-21 13:10:15 +00:00
foreach($this->getDirectoryEntries($path, $regex) as $entry)
{
2013-12-21 13:10:15 +00:00
if($this->normaliseName($entry) == $token) { $token = $entry; break; }
}
$path .= "$token/";
2013-04-14 22:41:04 +00:00
}
} else {
2013-05-01 20:16:05 +00:00
$i = 1;
$token = rtrim($pathHome, '/');
2013-12-21 13:10:15 +00:00
if($this->normaliseName($token) != $token) $invalid = true;
$regex = "/^[\d\-\_\.]*".strreplaceu('-', '.', $token)."$/";
2013-12-21 13:10:15 +00:00
foreach($this->getDirectoryEntries($path, $regex) as $entry)
{
2013-12-21 13:10:15 +00:00
if($this->normaliseName($entry) == $token) { $token = $entry; break; }
}
$path .= "$token/";
2013-05-01 20:16:05 +00:00
}
$token = !empty($tokens[$i]) ? $tokens[$i].$fileExtension : $fileDefault;
if(!empty($tokens[$i]) && $tokens[$i].$fileExtension==$fileDefault) $invalid = true;
2013-12-21 13:10:15 +00:00
if($this->normaliseName($token) != $token) $invalid = true;
$regex = "/^[\d\-\_\.]*".strreplaceu('-', '.', $token)."$/";
2013-12-21 13:10:15 +00:00
foreach($this->getDirectoryEntries($path, $regex, false, false) as $entry)
{
2013-12-21 13:10:15 +00:00
if($this->normaliseName($entry) == $token) { $token = $entry; break; }
}
$path .= $token;
return $invalid ? "" : $path;
2013-04-14 22:41:04 +00:00
}
// Find location from file path
2013-10-16 21:11:24 +00:00
function findLocationFromFile($fileName, $pathBase, $pathHome, $fileDefault, $fileExtension)
2013-04-14 22:41:04 +00:00
{
$location = "/";
2013-05-01 20:16:05 +00:00
if(substru($fileName, 0, strlenu($pathBase)) == $pathBase) $fileName = substru($fileName, strlenu($pathBase));
$tokens = explode('/', $fileName);
for($i=0; $i<count($tokens)-1; ++$i)
{
2013-12-21 13:10:15 +00:00
$token = $this->normaliseName($tokens[$i]).'/';
if($i || $token!=$pathHome) $location .= $token;
}
2013-12-21 13:10:15 +00:00
$token = $this->normaliseName($tokens[$i]);
if($token != $fileDefault) $location .= $this->normaliseName($tokens[$i], true);
2013-04-14 22:41:04 +00:00
return $location;
}
// Normalise directory/file name and convert unwanted characters
2013-10-16 21:11:24 +00:00
function normaliseName($text, $removeExtension = false)
{
if(preg_match("/^[\d\-\_\.]+(.*)$/", $text, $matches)) $text = $matches[1];
if($removeExtension) $text = ($pos = strrposu($text, '.')) ? substru($text, 0, $pos) : $text;
$text = preg_replace("/[^\pL\d\-\_\.]/u", "-", $text);
return $text;
}
2013-04-14 22:41:04 +00:00
// Return human readable HTTP server status
2013-10-16 21:11:24 +00:00
function getHttpStatusFormatted($statusCode)
2013-04-14 22:41:04 +00:00
{
switch($statusCode)
{
case 0: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode No data"; break;
2013-07-16 16:56:27 +00:00
case 200: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode OK"; break;
2013-04-14 22:41:04 +00:00
case 301: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Moved permanently"; break;
case 302: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Moved temporarily"; break;
2013-05-01 20:16:05 +00:00
case 303: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Reload please"; break;
2013-04-14 22:41:04 +00:00
case 304: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Not modified"; break;
2013-12-21 13:10:15 +00:00
case 400: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Bad request"; break;
2013-04-14 22:41:04 +00:00
case 401: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Unauthorised"; break;
case 404: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Not found"; break;
2013-11-29 12:16:14 +00:00
case 409: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Conflict"; break;
2013-04-14 22:41:04 +00:00
case 424: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Does not exist"; break;
2013-06-27 17:00:03 +00:00
case 500: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Server error"; break;
2013-07-11 20:33:28 +00:00
default: $text = "$_SERVER[SERVER_PROTOCOL] $statusCode Unknown status";
2013-04-14 22:41:04 +00:00
}
return $text;
}
2013-06-27 17:00:03 +00:00
// Return human readable HTTP time
2013-10-16 21:11:24 +00:00
function getHttpTimeFormatted($timestamp)
2013-06-27 17:00:03 +00:00
{
return gmdate("D, d M Y H:i:s", $timestamp)." GMT";
}
2013-04-14 22:41:04 +00:00
2013-11-29 12:16:14 +00:00
// Return HTTP URL
function getHttpUrl($serverName, $serverBase, $location)
{
if(preg_match("/^(http|https):\/\//", $location))
{
2013-11-29 12:16:14 +00:00
$url = $location;
} else {
2013-11-29 12:16:14 +00:00
$url = "http://$serverName$serverBase$location";
}
2013-11-29 12:16:14 +00:00
return $url;
}
// Return HTTP location header
function getHttpLocationHeader($serverName, $serverBase, $location)
{
2013-12-21 13:10:15 +00:00
return "Location: ".$this->getHttpUrl($serverName, $serverBase, $location);
}
2013-10-16 21:11:24 +00:00
// Return directory location
function getDirectoryLocation($location)
{
return ($pos = strrposu($location, '/')) ? substru($location, 0, $pos+1) : "/";
}
2013-04-14 22:41:04 +00:00
// Return files and directories
2013-10-16 21:11:24 +00:00
function getDirectoryEntries($path, $regex = "/.*/", $sort = false, $directories = true)
2013-04-14 22:41:04 +00:00
{
$entries = array();
$dirHandle = @opendir($path);
if($dirHandle)
{
while(($entry = readdir($dirHandle)) !== false)
{
2013-05-01 20:16:05 +00:00
if(substru($entry, 0, 1) == ".") continue;
2013-04-14 22:41:04 +00:00
if(preg_match($regex, $entry))
{
if($directories)
{
if(is_dir("$path/$entry")) array_push($entries, $entry);
} else {
if(is_file("$path/$entry")) array_push($entries, $entry);
}
}
}
if($sort) natsort($entries);
closedir($dirHandle);
}
return $entries;
}
// Return files and directories recursively
2013-10-16 21:11:24 +00:00
function getDirectoryEntriesRecursive($path, $regex = "/.*/", $sort = false, $directories = true, $levelMax = 0)
{
$entries = array();
2013-12-21 13:10:15 +00:00
foreach($this->getDirectoryEntries($path, $regex, $sort, $directories) as $entry) array_push($entries, "$path/$entry");
--$levelMax;
if($levelMax != 0)
{
2013-12-21 13:10:15 +00:00
foreach($this->getDirectoryEntries($path, "/.*/", $sort, true) as $entry)
{
2013-12-21 13:10:15 +00:00
$entries = array_merge($entries, $this->getDirectoryEntriesRecursive("$path/$entry", $regex, $sort, $directories, $levelMax));
}
}
return $entries;
}
// Create file
2013-12-21 13:10:15 +00:00
function createFile($fileName, $fileData, $mkdir = false)
{
$ok = false;
if($mkdir)
{
$path = dirname($fileName);
if(!empty($path) && !is_dir($path)) @mkdir($path, 0777, true);
}
$fileHandle = @fopen($fileName, "w");
if($fileHandle)
{
fwrite($fileHandle, $fileData);
fclose($fileHandle);
$ok = true;
}
return $ok;
}
// Copy file
function copyFile($fileNameSource, $fileNameDest, $mkdir = false)
{
if($mkdir)
{
$path = dirname($fileNameDest);
if(!empty($path) && !is_dir($path)) @mkdir($path, 0777, true);
}
return @copy($fileNameSource, $fileNameDest);
}
2013-04-07 18:04:09 +00:00
// Set file modification time, Unix time
function modifyFile($fileName, $modified)
{
return @touch($fileName, $modified);
}
2013-05-01 20:16:05 +00:00
// Create description from text string
2013-10-16 21:11:24 +00:00
function createTextDescription($text, $lengthMax, $removeHtml = true, $endMarker = "", $endMarkerText = "")
2013-04-14 22:41:04 +00:00
{
2013-05-01 20:16:05 +00:00
if(preg_match("/<h1>.*<\/h1>(.*)/si", $text, $matches)) $text = $matches[1];
if($removeHtml)
2013-04-14 22:41:04 +00:00
{
2013-05-01 20:16:05 +00:00
while(true)
2013-04-14 22:41:04 +00:00
{
2013-09-17 09:18:01 +00:00
$elementFound = preg_match("/<\s*?([\/!]?\w*)(.*?)\s*?\>/s", $text, $matches, PREG_OFFSET_CAPTURE, $offsetBytes);
2013-05-01 20:16:05 +00:00
$element = $matches[0][0];
$elementName = $matches[1][0];
2013-09-17 09:18:01 +00:00
$elementText = $matches[2][0];
2013-05-01 20:16:05 +00:00
$elementOffsetBytes = $elementFound ? $matches[0][1] : strlenb($text);
$string = html_entity_decode(substrb($text, $offsetBytes, $elementOffsetBytes - $offsetBytes), ENT_QUOTES, "UTF-8");
if(preg_match("/^(blockquote|br|div|h\d|hr|li|ol|p|pre|ul)/i", $elementName)) $string .= ' ';
if(preg_match("/^\/(code|pre)/i", $elementName)) $string = preg_replace("/^(\d+\n){2,}$/", "", $string);
2013-05-01 20:16:05 +00:00
$string = preg_replace("/\s+/s", " ", $string);
2013-11-29 12:16:14 +00:00
if(substru($string, 0, 1)==" " && (empty($output) || substru($output, -1)==' ')) $string = substru($string, 1);
2013-05-01 20:16:05 +00:00
$length = strlenu($string);
$output .= substru($string, 0, $length < $lengthMax ? $length : $lengthMax-1);
$lengthMax -= $length;
2013-09-17 09:18:01 +00:00
if(!empty($element) && $element==$endMarker) { $lengthMax = 0; $endMarkerFound = true; }
2013-05-01 20:16:05 +00:00
if($lengthMax<=0 || !$elementFound) break;
$offsetBytes = $elementOffsetBytes + strlenb($element);
2013-04-14 22:41:04 +00:00
}
2013-05-01 20:16:05 +00:00
$output = rtrim($output);
2013-09-17 09:18:01 +00:00
if($lengthMax <= 0) $output .= $endMarkerFound ? $endMarkerText : "";
2013-05-01 20:16:05 +00:00
} else {
$elementsOpen = array();
while(true)
2013-04-14 22:41:04 +00:00
{
2013-09-17 09:18:01 +00:00
$elementFound = preg_match("/&.*?\;|<\s*?([\/!]?\w*)(.*?)\s*?\>/s", $text, $matches, PREG_OFFSET_CAPTURE, $offsetBytes);
2013-05-01 20:16:05 +00:00
$element = $matches[0][0];
$elementName = $matches[1][0];
$elementText = $matches[2][0];
2013-05-01 20:16:05 +00:00
$elementOffsetBytes = $elementFound ? $matches[0][1] : strlenb($text);
$string = substrb($text, $offsetBytes, $elementOffsetBytes - $offsetBytes);
$length = strlenu($string);
$output .= substru($string, 0, $length < $lengthMax ? $length : $lengthMax-1);
$lengthMax -= $length + ($element[0]=='&' ? 1 : 0);
2013-09-17 09:18:01 +00:00
if(!empty($element) && $element==$endMarker) { $lengthMax = 0; $endMarkerFound = true; }
2013-05-01 20:16:05 +00:00
if($lengthMax<=0 || !$elementFound) break;
if(!empty($elementName) && substru($elementText, -1)!='/' &&
2013-09-17 09:18:01 +00:00
!preg_match("/^(area|br|col|hr|img|input|col|param|!)/i", $elementName))
2013-05-01 20:16:05 +00:00
{
if($elementName[0] != '/')
2013-05-01 20:16:05 +00:00
{
array_push($elementsOpen, $elementName);
2013-05-01 20:16:05 +00:00
} else {
array_pop($elementsOpen);
}
}
$output .= $element;
$offsetBytes = $elementOffsetBytes + strlenb($element);
2013-04-14 22:41:04 +00:00
}
2013-05-01 20:16:05 +00:00
$output = rtrim($output);
2013-12-21 13:10:15 +00:00
for($i=count($elementsOpen)-1; $i>=0; --$i)
{
if(!preg_match("/^(dl|ol|ul|table|tbody|thead|tfoot|tr)/i", $elementsOpen[$i])) break;
$output .= "</".$elementsOpen[$i].">";
}
2013-09-17 09:18:01 +00:00
if($lengthMax <= 0) $output .= $endMarkerFound ? $endMarkerText : "";
2013-12-21 13:10:15 +00:00
for(; $i>=0; --$i) $output .= "</".$elementsOpen[$i].">";
2013-04-14 22:41:04 +00:00
}
2013-05-01 20:16:05 +00:00
return $output;
2013-04-14 22:41:04 +00:00
}
2013-12-21 13:10:15 +00:00
2013-04-14 22:41:04 +00:00
// Create keywords from text string
2013-10-16 21:11:24 +00:00
function createTextKeywords($text, $keywordsMax)
2013-04-14 22:41:04 +00:00
{
2013-05-01 20:16:05 +00:00
$tokens = preg_split("/[,\s\(\)]/", strtoloweru($text));
foreach($tokens as $key=>$value) if(strlenu($value) < 3) unset($tokens[$key]);
2013-04-14 22:41:04 +00:00
return implode(", ", array_slice(array_unique($tokens), 0, $keywordsMax));
}
// Create title from text string
2013-10-16 21:11:24 +00:00
function createTextTitle($text)
2013-04-14 22:41:04 +00:00
{
2013-07-16 16:56:27 +00:00
if(preg_match("/^.*\/([\w\-]+)/", $text, $matches)) $text = ucfirst($matches[1]);
2013-04-14 22:41:04 +00:00
return $text;
}
// Detect web browser language
2013-10-16 21:11:24 +00:00
function detectBrowserLanguage($languagesAllowed, $languageDefault)
2013-04-14 22:41:04 +00:00
{
$language = $languageDefault;
if(isset($_SERVER["HTTP_ACCEPT_LANGUAGE"]))
{
foreach(preg_split("/,\s*/", $_SERVER["HTTP_ACCEPT_LANGUAGE"]) as $string)
{
2013-05-01 20:16:05 +00:00
$tokens = explode(';', $string, 2);
2013-09-17 09:18:01 +00:00
if(in_array($tokens[0], $languagesAllowed)) { $language = $tokens[0]; break; }
2013-04-14 22:41:04 +00:00
}
}
return $language;
}
2013-04-07 18:04:09 +00:00
2013-04-14 22:41:04 +00:00
// Detect PNG and JPG image dimensions
2013-10-16 21:11:24 +00:00
function detectImageDimensions($fileName)
2013-04-14 22:41:04 +00:00
{
$width = $height = 0;
$fileHandle = @fopen($fileName, "rb");
if($fileHandle)
{
2013-05-01 20:16:05 +00:00
if(substru($fileName, -3) == "png")
2013-04-14 22:41:04 +00:00
{
$dataSignature = fread($fileHandle, 8);
$dataHeader = fread($fileHandle, 16);
2013-04-14 22:41:04 +00:00
if(!feof($fileHandle) && $dataSignature=="\x89PNG\r\n\x1a\n")
{
$width = (ord($dataHeader[10])<<8) + ord($dataHeader[11]);
$height = (ord($dataHeader[14])<<8) + ord($dataHeader[15]);
}
2013-05-01 20:16:05 +00:00
} else if(substru($fileName, -3) == "jpg") {
2013-12-12 22:35:36 +00:00
$dataBufferSize = min(filesize($fileName), 8192);
$dataBuffer = fread($fileHandle, $dataBufferSize);
$dataSignature = substrb($dataBuffer, 0, 11);
2013-04-14 22:41:04 +00:00
if(!feof($fileHandle) && $dataSignature=="\xff\xd8\xff\xe0\x00\x10JFIF\0")
{
2013-12-12 22:35:36 +00:00
for($pos=20; $pos+8<$dataBufferSize; $pos+=$length)
{
2013-12-12 22:35:36 +00:00
if($dataBuffer[$pos] != "\xff") break;
if($dataBuffer[$pos+1]=="\xc0" || $dataBuffer[$pos+1]=="\xc2")
{
$width = (ord($dataBuffer[$pos+7])<<8) + ord($dataBuffer[$pos+8]);
$height = (ord($dataBuffer[$pos+5])<<8) + ord($dataBuffer[$pos+6]);
break;
}
$length = (ord($dataBuffer[$pos+2])<<8) + ord($dataBuffer[$pos+3]) + 2;
}
2013-04-14 22:41:04 +00:00
}
}
fclose($fileHandle);
}
return array($width, $height);
}
2013-04-07 18:04:09 +00:00
2013-04-14 22:41:04 +00:00
// Start timer
2013-10-16 21:11:24 +00:00
function timerStart(&$time)
2013-04-14 22:41:04 +00:00
{
$time = microtime(true);
}
// Stop timer and calcuate elapsed time (milliseconds)
2013-10-16 21:11:24 +00:00
function timerStop(&$time)
2013-04-14 22:41:04 +00:00
{
$time = intval((microtime(true)-$time) * 1000);
}
2013-04-07 18:04:09 +00:00
}
// Yellow plugins
2013-12-01 11:59:07 +00:00
class YellowPlugins
2013-04-07 18:04:09 +00:00
{
2013-04-14 22:41:04 +00:00
var $plugins; //registered plugins
2013-04-07 18:04:09 +00:00
2013-04-14 22:41:04 +00:00
function __construct()
{
$this->plugins = array();
}
// Load plugins
function load()
2013-04-07 18:04:09 +00:00
{
global $yellow;
2013-12-21 13:10:15 +00:00
$path = dirname(__FILE__);
foreach($yellow->toolbox->getDirectoryEntries($path, "/.*\.php/", true, false) as $entry) require_once("$path/$entry");
$path = $yellow->config->get("pluginDir");
foreach($yellow->toolbox->getDirectoryEntries($path, "/.*\.php/", true, false) as $entry) require_once("$path/$entry");
2013-04-14 22:41:04 +00:00
foreach($this->plugins as $key=>$value)
{
$this->plugins[$key]["obj"] = new $value["class"];
2013-12-01 11:59:07 +00:00
if(defined("DEBUG") && DEBUG>=2) echo "YellowPlugins::load class:$value[class] $value[version]<br/>\n";
if(method_exists($this->plugins[$key]["obj"], "onLoad")) $this->plugins[$key]["obj"]->onLoad($yellow);
2013-04-07 18:04:09 +00:00
}
}
2013-04-14 22:41:04 +00:00
// Register plugin
2013-04-07 18:04:09 +00:00
function register($name, $class, $version)
{
2013-04-14 22:41:04 +00:00
if(!$this->isExisting($name))
{
$this->plugins[$name] = array();
$this->plugins[$name]["class"] = $class;
$this->plugins[$name]["version"] = $version;
}
}
// Check if plugin exists
function isExisting($name)
{
return !is_null($this->plugins[$name]);
2013-04-07 18:04:09 +00:00
}
}
2013-05-01 20:16:05 +00:00
// Unicode support for PHP 5
mb_internal_encoding("UTF-8");
2013-10-16 21:11:24 +00:00
function strempty($string) { return is_null($string) || $string===""; }
2013-05-01 20:16:05 +00:00
function strlenu() { return call_user_func_array("mb_strlen", func_get_args()); }
function strposu() { return call_user_func_array("mb_strpos", func_get_args()); }
function strrposu() { return call_user_func_array("mb_strrpos", func_get_args()); }
2013-05-01 20:16:05 +00:00
function strreplaceu() { return call_user_func_array("str_replace", func_get_args()); }
function strtoloweru() { return call_user_func_array("mb_strtolower", func_get_args()); }
function strtoupperu() { return call_user_func_array("mb_strtoupper", func_get_args()); }
function substru() { return call_user_func_array("mb_substr", func_get_args()); }
function strlenb() { return call_user_func_array("strlen", func_get_args()); }
function strposb() { return call_user_func_array("strpos", func_get_args()); }
function strrposb() { return call_user_func_array("strrpos", func_get_args()); }
2013-05-01 20:16:05 +00:00
function substrb() { return call_user_func_array("substr", func_get_args()); }
2013-06-07 20:01:12 +00:00
// Error reporting for PHP 5
error_reporting(E_ALL ^ E_NOTICE);
2013-04-07 18:04:09 +00:00
?>