yellow/system/extensions/install.php

370 lines
20 KiB
PHP
Raw Normal View History

2018-09-07 16:20:02 +00:00
<?php
2019-02-23 14:04:34 +00:00
// Install extension, https://github.com/datenstrom/yellow
2018-09-07 16:20:02 +00:00
2018-10-03 13:56:04 +00:00
class YellowInstall {
2020-07-23 06:36:57 +00:00
const VERSION = "0.8.27";
2019-02-23 14:04:34 +00:00
const TYPE = "feature";
2018-10-09 12:49:48 +00:00
const PRIORITY = "1";
2020-07-24 08:18:18 +00:00
public $yellow; // access to API
2018-09-07 16:20:02 +00:00
// Handle initialisation
public function onLoad($yellow) {
$this->yellow = $yellow;
}
// Handle request
public function onRequest($scheme, $address, $base, $location, $fileName) {
$statusCode = 0;
2020-02-24 16:00:01 +00:00
if ($this->yellow->lookup->isContentFile($fileName) || empty($fileName)) {
2018-10-03 13:56:04 +00:00
$statusCode = $this->processRequestInstall($scheme, $address, $base, $location, $fileName);
2018-09-07 16:20:02 +00:00
}
return $statusCode;
}
// Handle command
2020-06-25 14:46:44 +00:00
public function onCommand($command, $text) {
2020-02-24 16:00:01 +00:00
return $this->processCommandInstall();
2018-09-07 16:20:02 +00:00
}
2019-02-23 14:04:34 +00:00
// Process request to install website
2018-10-03 13:56:04 +00:00
public function processRequestInstall($scheme, $address, $base, $location, $fileName) {
2020-02-24 16:00:01 +00:00
$this->checkServerRequirements();
2020-06-23 16:20:44 +00:00
$author = trim(preg_replace("/[^\pL\d\-\. ]/u", "-", $this->yellow->page->getRequest("author")));
$email = trim($this->yellow->page->getRequest("email"));
$password = trim($this->yellow->page->getRequest("password"));
$language = trim($this->yellow->page->getRequest("language"));
$extension = trim($this->yellow->page->getRequest("extension"));
$status = trim($this->yellow->page->getRequest("status"));
2019-03-16 07:59:37 +00:00
$statusCode = $this->updateLog();
$statusCode = max($statusCode, $this->updateLanguage());
2019-02-23 14:04:34 +00:00
$this->yellow->content->pages["root/"] = array();
2018-09-07 16:20:02 +00:00
$this->yellow->page = new YellowPage($this->yellow);
$this->yellow->page->setRequestInformation($scheme, $address, $base, $location, $fileName);
2018-10-03 13:56:04 +00:00
$this->yellow->page->parseData($this->getRawDataInstall(), false, $statusCode, $this->yellow->page->get("pageError"));
2018-09-28 12:07:09 +00:00
$this->yellow->page->safeMode = false;
if ($status=="install") $status = $this->updateExtension($extension)==200 ? "ok" : "error";
2019-06-09 13:43:09 +00:00
if ($status=="ok") $status = $this->updateUser($email, $password, $author, $language)==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "installHome", "/")==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "installDefault", "/shared/page-new-default")==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "installBlog", "/shared/page-new-blog")==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "installWiki", "/shared/page-new-wiki")==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "coreError404", "/shared/page-error-404")==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateText($language)==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateSystem($this->getSystemData())==200 ? "ok" : "error";
2020-02-24 16:00:01 +00:00
if ($status=="ok") $status = $this->removeInstall()==200 ? "done" : "error";
2018-09-07 16:20:02 +00:00
if ($status=="done") {
$location = $this->yellow->lookup->normaliseUrl($scheme, $address, $base, $location);
$statusCode = $this->yellow->sendStatus(303, $location);
} else {
$statusCode = $this->yellow->sendPage();
}
return $statusCode;
}
2020-02-22 16:13:30 +00:00
// Process command to install website
public function processCommandInstall() {
$statusCode = $this->updateLog();
if ($statusCode==200) $statusCode = $this->updateLanguage();
if ($statusCode==200) $statusCode = $this->updateText("en");
if ($statusCode==200) $statusCode = $this->updateSystem($this->getSystemData());
2020-02-24 16:00:01 +00:00
if ($statusCode==200) $statusCode = $this->removeInstall();
2020-02-22 16:13:30 +00:00
if ($statusCode==200) {
$statusCode = 0;
} else {
echo "ERROR updating files: ".$this->yellow->page->get("pageError")."\n";
echo "Your website has ".($statusCode!=200 ? "not " : "")."been updated: Please run command again\n";
}
return $statusCode;
}
2019-03-16 07:59:37 +00:00
// Update log
public function updateLog() {
$statusCode = 200;
2020-06-25 14:46:44 +00:00
$fileName = $this->yellow->system->get("coreExtensionDirectory").$this->yellow->system->get("coreLogFile");
2019-03-16 07:59:37 +00:00
if (!is_file($fileName)) {
list($name, $version) = $this->yellow->toolbox->detectServerInformation();
$this->yellow->log("info", "Datenstrom Yellow ".YellowCore::VERSION.", PHP ".PHP_VERSION.", $name $version, ".PHP_OS);
2019-03-16 07:59:37 +00:00
if (!is_file($fileName)) {
$statusCode = 500;
$this->yellow->page->error(500, "Can't write file '$fileName'!");
}
}
return $statusCode;
}
// Update language
public function updateLanguage() {
2018-09-07 16:20:02 +00:00
$statusCode = 200;
2020-06-25 14:46:44 +00:00
$path = $this->yellow->system->get("coreExtensionDirectory")."install-languages.zip";
2019-02-23 14:04:34 +00:00
if (is_file($path) && $this->yellow->extensions->isExisting("update")) {
2018-09-07 16:20:02 +00:00
$zip = new ZipArchive();
if ($zip->open($path)===true) {
2019-02-23 14:04:34 +00:00
$languages = $this->detectBrowserLanguages("en, de, fr");
$languagesFound = array();
foreach ($languages as $language) $languagesFound[$language] = "";
2018-09-07 16:20:02 +00:00
if (preg_match("#^(.*\/).*?$#", $zip->getNameIndex(0), $matches)) $pathBase = $matches[1];
2019-02-25 20:50:19 +00:00
$fileData = $zip->getFromName($pathBase.$this->yellow->system->get("updateExtensionFile"));
2018-09-07 16:20:02 +00:00
foreach ($this->yellow->toolbox->getTextLines($fileData) as $line) {
preg_match("/^\s*(.*?)\s*:\s*(.*?)\s*$/", $line, $matches);
if (!empty($matches[1]) && !empty($matches[2]) && strposu($matches[1], "/")) {
2020-06-28 17:16:07 +00:00
list($dummy, $entry, $flags) = $this->yellow->toolbox->getTextList($matches[2], ",", 3);
$language = array_pop(explode(",", $flags));
2019-02-23 14:04:34 +00:00
if (preg_match("/^(.*)\.php$/", basename($entry), $tokens) && in_array($language, $languages)) {
$languagesFound[$language] = $tokens[1];
2018-09-07 16:20:02 +00:00
}
}
}
2019-02-23 14:04:34 +00:00
$languagesFound = array_slice(array_filter($languagesFound, "strlen"), 0, 3);
2020-06-22 06:18:46 +00:00
$extension = $version = "";
$modified = 0;
2018-09-07 16:20:02 +00:00
foreach ($this->yellow->toolbox->getTextLines($fileData) as $line) {
preg_match("/^\s*(.*?)\s*:\s*(.*?)\s*$/", $line, $matches);
2019-02-23 14:04:34 +00:00
if (lcfirst($matches[1])=="extension") $extension = lcfirst($matches[2]);
2020-06-22 06:18:46 +00:00
if (lcfirst($matches[1])=="version") $version = lcfirst($matches[2]);
2018-09-07 16:20:02 +00:00
if (lcfirst($matches[1])=="published") $modified = strtotime($matches[2]);
if (!empty($matches[1]) && !empty($matches[2]) && strposu($matches[1], "/")) {
2019-03-16 07:59:37 +00:00
$fileName = $matches[1];
2020-06-28 17:16:07 +00:00
list($dummy1, $entry, $dummy2) = $this->yellow->toolbox->getTextList($matches[2], ",", 3);
2019-02-23 14:04:34 +00:00
$fileData = $zip->getFromName($pathBase.basename($entry));
2019-03-16 08:42:02 +00:00
if (preg_match("/^(.*).php$/", basename($entry), $tokens) && in_array($tokens[1], $languagesFound) && !is_file($fileName)) {
$statusCode = $this->yellow->extensions->get("update")->updateExtensionFile($fileName, $fileData, $modified, 0, 0, "create", false, $extension);
2018-09-07 16:20:02 +00:00
}
2019-03-16 08:42:02 +00:00
if (preg_match("/^(.*)-language\.txt$/", basename($entry), $tokens) && in_array($tokens[1], $languagesFound) && !is_file($fileName)) {
$statusCode = $this->yellow->extensions->get("update")->updateExtensionFile($fileName, $fileData, $modified, 0, 0, "create", false, $extension);
2020-06-22 06:18:46 +00:00
$this->yellow->log($statusCode==200 ? "info" : "error", "Install extension '".ucfirst($tokens[1])." $version'");
2018-09-07 16:20:02 +00:00
}
2019-03-16 07:59:37 +00:00
if ($statusCode!=200) break;
2018-09-07 16:20:02 +00:00
}
}
$zip->close();
if ($statusCode==200) {
2020-06-25 14:46:44 +00:00
$this->yellow->text->load($this->yellow->system->get("coreExtensionDirectory").$this->yellow->system->get("coreLanguageFile"), "");
2018-09-07 16:20:02 +00:00
}
} else {
$statusCode = 500;
$this->yellow->page->error(500, "Can't open file '$path'!");
}
}
return $statusCode;
}
2019-02-23 14:04:34 +00:00
// Update extension
public function updateExtension($extension) {
2018-09-07 16:20:02 +00:00
$statusCode = 200;
2020-06-25 14:46:44 +00:00
$path = $this->yellow->system->get("coreExtensionDirectory");
2019-02-23 14:04:34 +00:00
if (!empty($extension) && $this->yellow->extensions->isExisting("update")) {
2018-09-07 16:20:02 +00:00
foreach ($this->yellow->toolbox->getDirectoryEntries($path, "/^.*\.zip$/", true, false) as $entry) {
2018-10-03 13:56:04 +00:00
if (preg_match("/^install-(.*?)\./", basename($entry), $matches)) {
2019-02-23 14:04:34 +00:00
if (strtoloweru($matches[1])==strtoloweru($extension)) {
2019-03-16 07:59:37 +00:00
$statusCode = $this->yellow->extensions->get("update")->updateExtensionArchive($entry, "install");
2018-09-07 16:20:02 +00:00
break;
}
}
}
}
return $statusCode;
}
// Update user
public function updateUser($email, $password, $name, $language) {
$statusCode = 200;
if (!empty($email) && !empty($password) && $this->yellow->extensions->isExisting("edit")) {
if (empty($name)) $name = $this->yellow->system->get("sitename");
2020-06-25 14:46:44 +00:00
$fileNameUser = $this->yellow->system->get("coreSettingDirectory").$this->yellow->system->get("editUserFile");
$settings = array(
"name" => $name,
"language" => $language,
"home" => "/",
"access" => "create, edit, delete, upload, system, update",
"hash" => $this->yellow->extensions->get("edit")->users->createHash($password),
"stamp" => $this->yellow->extensions->get("edit")->users->createStamp(),
"pending" => "none",
"failed" => "0",
"modified" => time(),
"status" => "active");
if (!$this->yellow->extensions->get("edit")->users->save($fileNameUser, $email, $settings)) {
$statusCode = 500;
$this->yellow->page->error(500, "Can't write file '$fileNameUser'!");
}
$this->yellow->log($statusCode==200 ? "info" : "error", "Add user '".strtok($name, " ")."'");
}
return $statusCode;
}
2018-09-18 11:04:15 +00:00
// Update content
2018-09-07 16:20:02 +00:00
public function updateContent($language, $name, $location) {
$statusCode = 200;
2019-04-22 09:06:04 +00:00
$fileName = $this->yellow->lookup->findFileFromLocation($location);
2020-07-23 06:36:57 +00:00
$fileData = str_replace("\r\n", "\n", $this->yellow->toolbox->readFile($fileName));
2019-04-22 09:06:04 +00:00
if (!empty($fileData) && $language!="en") {
$titleOld = "Title: ".$this->yellow->text->getText("{$name}Title", "en");
$titleNew = "Title: ".$this->yellow->text->getText("{$name}Title", $language);
2020-07-23 06:36:57 +00:00
$textOld = str_replace("\\n", "\n", $this->yellow->text->getText("{$name}Text", "en"));
$textNew = str_replace("\\n", "\n", $this->yellow->text->getText("{$name}Text", $language));
$fileData = str_replace($titleOld, $titleNew, $fileData);
$fileData = str_replace($textOld, $textNew, $fileData);
2019-04-22 09:06:04 +00:00
if (!$this->yellow->toolbox->createFile($fileName, $fileData)) {
$statusCode = 500;
$this->yellow->page->error($statusCode, "Can't write file '$fileName'!");
2018-09-07 16:20:02 +00:00
}
}
return $statusCode;
}
// Update text settings
public function updateText($language) {
$statusCode = 200;
2020-06-25 14:46:44 +00:00
$fileName = $this->yellow->system->get("coreSettingDirectory").$this->yellow->system->get("coreTextFile");
$fileData = $this->yellow->toolbox->readFile($fileName);
if (count($this->yellow->toolbox->getTextLines($fileData))<4) {
$fileData .= "Language: $language\n";
$fileData .= "CoreDateFormatMedium: ".$this->yellow->text->getText("coreDateFormatMedium", $language)."\n";
$fileData .= "picture.jpg: ".$this->yellow->text->getText("installExampleImage", $language)."\n";
if (!$this->yellow->toolbox->createFile($fileName, $fileData)) {
$statusCode = 500;
$this->yellow->page->error($statusCode, "Can't write file '$fileName'!");
}
}
return $statusCode;
}
// Update system settings
public function updateSystem($settings) {
2018-09-07 16:20:02 +00:00
$statusCode = 200;
2020-06-25 14:46:44 +00:00
$fileName = $this->yellow->system->get("coreSettingDirectory").$this->yellow->system->get("coreSystemFile");
2019-02-23 14:04:34 +00:00
if (!$this->yellow->system->save($fileName, $settings)) {
2018-09-07 16:20:02 +00:00
$statusCode = 500;
2019-02-23 14:04:34 +00:00
$this->yellow->page->error($statusCode, "Can't write file '$fileName'!");
2018-09-07 16:20:02 +00:00
}
return $statusCode;
}
2019-02-23 14:04:34 +00:00
// Remove files used by installation
2020-02-24 16:00:01 +00:00
public function removeInstall() {
$statusCode = 200;
if (function_exists("opcache_reset")) opcache_reset();
2020-06-25 14:46:44 +00:00
$path = $this->yellow->system->get("coreExtensionDirectory");
foreach ($this->yellow->toolbox->getDirectoryEntries($path, "/^.*\.zip$/", true, false) as $entry) {
2018-10-03 13:56:04 +00:00
if (preg_match("/^install-(.*?)\./", basename($entry), $matches)) {
if (!$this->yellow->toolbox->deleteFile($entry)) {
$statusCode = 500;
$this->yellow->page->error($statusCode, "Can't delete file '$entry'!");
}
}
}
2020-06-25 14:46:44 +00:00
$path = $this->yellow->system->get("coreExtensionDirectory")."install.php";
if ($statusCode==200 && !$this->yellow->toolbox->deleteFile($path)) {
$statusCode = 500;
$this->yellow->page->error($statusCode, "Can't delete file '$path'!");
}
2019-02-23 14:04:34 +00:00
if ($statusCode==200) unset($this->yellow->extensions->extensions["install"]);
return $statusCode;
}
2020-02-24 16:00:01 +00:00
// Check web server requirements
public function checkServerRequirements() {
list($name) = $this->yellow->toolbox->detectServerInformation();
2020-02-24 16:00:01 +00:00
$troubleshooting = "<a href=\"https://datenstrom.se/yellow/help/troubleshooting\">See troubleshooting</a>.";
2020-06-23 16:20:44 +00:00
$this->checkServerConfiguration() || die("Datenstrom Yellow requires configuration file for $name! $troubleshooting\n");
$this->checkServerRewrite() || die("Datenstrom Yellow requires rewrite support for $name! $troubleshooting\n");
$this->checkServerWrite() || die("Datenstrom Yellow requires write access for $name! $troubleshooting\n");
2020-02-22 16:13:30 +00:00
return true;
}
// Check web server configuration file
public function checkServerConfiguration() {
list($name) = $this->yellow->toolbox->detectServerInformation();
return strtoloweru($name)!="apache" || is_file(".htaccess");
}
2020-02-22 16:13:30 +00:00
// Check web server rewrite support
public function checkServerRewrite() {
2018-09-07 16:20:02 +00:00
$curlHandle = curl_init();
2020-02-22 16:13:30 +00:00
list($scheme, $address, $base) = $this->yellow->getRequestInformation();
$location = $this->yellow->system->get("coreResourceLocation").$this->yellow->lookup->normaliseName($this->yellow->system->get("theme")).".css";
2018-09-07 16:20:02 +00:00
$url = $this->yellow->lookup->normaliseUrl($scheme, $address, $base, $location);
curl_setopt($curlHandle, CURLOPT_URL, $url);
curl_setopt($curlHandle, CURLOPT_USERAGENT, "Mozilla/5.0 (compatible; YellowCore/".YellowCore::VERSION).")";
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curlHandle, CURLOPT_CONNECTTIMEOUT, 30);
$rawData = curl_exec($curlHandle);
$statusCode = curl_getinfo($curlHandle, CURLINFO_HTTP_CODE);
curl_close($curlHandle);
2020-02-24 16:00:01 +00:00
return $statusCode==200;
2018-09-07 16:20:02 +00:00
}
// Check web server write access
2020-02-22 16:13:30 +00:00
public function checkServerWrite() {
2020-06-25 14:46:44 +00:00
$fileName = $this->yellow->system->get("coreSettingDirectory").$this->yellow->system->get("coreSystemFile");
2019-02-23 14:04:34 +00:00
return $this->yellow->system->save($fileName, array());
2018-09-07 16:20:02 +00:00
}
2020-06-23 16:20:44 +00:00
// Detect browser languages
2019-02-23 14:04:34 +00:00
public function detectBrowserLanguages($languagesDefault) {
$languages = array();
2020-06-23 16:20:44 +00:00
foreach (preg_split("/\s*,\s*/", $this->yellow->toolbox->getServer("HTTP_ACCEPT_LANGUAGE")) as $string) {
2020-06-28 17:16:07 +00:00
list($language, $dummy) = $this->yellow->toolbox->getTextList($string, ";", 2);
2020-06-23 16:20:44 +00:00
if (!empty($language)) array_push($languages, $language);
2018-09-07 16:20:02 +00:00
}
foreach (preg_split("/\s*,\s*/", $languagesDefault) as $language) {
2019-02-23 14:04:34 +00:00
if (!empty($language)) array_push($languages, $language);
2018-09-07 16:20:02 +00:00
}
2019-02-23 14:04:34 +00:00
return array_unique($languages);
2018-09-07 16:20:02 +00:00
}
2020-02-22 16:13:30 +00:00
// Return system data including static information
2019-02-23 14:04:34 +00:00
public function getSystemData() {
2018-09-07 16:20:02 +00:00
$data = array();
foreach ($_REQUEST as $key=>$value) {
2019-02-23 14:04:34 +00:00
if (!$this->yellow->system->isExisting($key)) continue;
2019-12-12 13:51:53 +00:00
if ($key=="password" || $key=="status") continue;
2018-09-07 16:20:02 +00:00
$data[$key] = trim($value);
}
$data["coreStaticUrl"] = $this->yellow->toolbox->detectServerUrl();
$data["coreServerTimezone"] = $this->yellow->toolbox->detectServerTimezone();
if ($this->yellow->isCommandLine()) $data["coreStaticUrl"] = getenv("URL");
2018-09-07 16:20:02 +00:00
return $data;
}
2018-10-03 13:56:04 +00:00
// Return raw data for install page
public function getRawDataInstall() {
2019-02-23 14:04:34 +00:00
$language = $this->yellow->toolbox->detectBrowserLanguage($this->yellow->text->getLanguages(), $this->yellow->system->get("language"));
$this->yellow->text->setLanguage($language);
2019-03-27 22:01:54 +00:00
$rawData = "---\nTitle:".$this->yellow->text->get("installTitle")."\nLanguage:$language\nNavigation:navigation\nHeader:none\nFooter:none\nSidebar:none\n---\n";
2019-02-23 14:04:34 +00:00
$rawData .= "<form class=\"install-form\" action=\"".$this->yellow->page->getLocation(true)."\" method=\"post\">\n";
2019-06-09 13:43:09 +00:00
$rawData .= "<p><label for=\"author\">".$this->yellow->text->get("editSignupName")."</label><br /><input class=\"form-control\" type=\"text\" maxlength=\"64\" name=\"author\" id=\"author\" value=\"\"></p>\n";
2019-02-23 14:04:34 +00:00
$rawData .= "<p><label for=\"email\">".$this->yellow->text->get("editSignupEmail")."</label><br /><input class=\"form-control\" type=\"text\" maxlength=\"64\" name=\"email\" id=\"email\" value=\"\"></p>\n";
$rawData .= "<p><label for=\"password\">".$this->yellow->text->get("editSignupPassword")."</label><br /><input class=\"form-control\" type=\"password\" maxlength=\"64\" name=\"password\" id=\"password\" value=\"\"></p>\n";
if (count($this->yellow->text->getLanguages())>1) {
$rawData .= "<p>";
foreach ($this->yellow->text->getLanguages() as $language) {
$checked = $language==$this->yellow->text->language ? " checked=\"checked\"" : "";
$rawData .= "<label for=\"$language\"><input type=\"radio\" name=\"language\" id=\"$language\" value=\"$language\"$checked> ".$this->yellow->text->getTextHtml("languageDescription", $language)."</label><br />";
2018-09-07 16:20:02 +00:00
}
2019-02-23 14:04:34 +00:00
$rawData .= "</p>\n";
}
if (count($this->getExtensionsInstall())>1) {
$rawData .= "<p>".$this->yellow->text->get("installExtension")."<p>";
foreach ($this->getExtensionsInstall() as $extension) {
$checked = $extension=="website" ? " checked=\"checked\"" : "";
2019-03-27 12:19:30 +00:00
$rawData .= "<label for=\"$extension\"><input type=\"radio\" name=\"extension\" id=\"$extension\" value=\"$extension\"$checked> ".$this->yellow->text->getHtml("installExtension".ucfirst($extension))."</label><br />";
2018-09-07 16:20:02 +00:00
}
2019-02-23 14:04:34 +00:00
$rawData .= "</p>\n";
2018-09-07 16:20:02 +00:00
}
2019-02-23 14:04:34 +00:00
$rawData .= "<input class=\"btn\" type=\"submit\" value=\"".$this->yellow->text->get("editOkButton")."\" />\n";
$rawData .= "<input type=\"hidden\" name=\"status\" value=\"install\" />\n";
$rawData .= "</form>\n";
2018-09-07 16:20:02 +00:00
return $rawData;
}
2019-02-23 14:04:34 +00:00
// Return extensions for install page
public function getExtensionsInstall() {
$extensions = array("website");
2020-06-25 14:46:44 +00:00
$path = $this->yellow->system->get("coreExtensionDirectory");
2018-09-07 16:20:02 +00:00
foreach ($this->yellow->toolbox->getDirectoryEntries($path, "/^.*\.zip$/", true, false, false) as $entry) {
2019-02-23 14:04:34 +00:00
if (preg_match("/^install-(.*?)\./", $entry, $matches) && $matches[1]!="languages") array_push($extensions, $matches[1]);
2018-09-07 16:20:02 +00:00
}
2019-02-23 14:04:34 +00:00
return $extensions;
2018-09-07 16:20:02 +00:00
}
}