123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- <?php
- namespace Typemill\Controllers;
- use Slim\Http\Request;
- use Slim\Http\Response;
- use Psr\Container\ContainerInterface;
- use Typemill\Models\Validation;
- use Typemill\Models\Folder;
- use Typemill\Models\Write;
- use Typemill\Models\WriteCache;
- use Typemill\Models\WriteYaml;
- abstract class ContentController
- {
- # holds the pimple container
- protected $c;
-
- # holds the params from request
- protected $params;
-
- # holds the slim-uri-object
- protected $uri;
-
- # holds the errors to output in frontend
- protected $errors = false;
-
- # holds a write object to write files
- protected $write;
-
- # holds the structure of content folder as a serialized array of objects
- protected $structure;
-
- # holds the name of the structure-file with drafts for author environment
- protected $structureDraftName;
-
- # holds the name of the structure-file without drafts for live site
- protected $structureLiveName;
-
- # holds informations about the homepage
- protected $homepage;
- # hold the page-item as an object
- protected $item;
-
- # hold the breadcrumb as an object
- protected $breadcrumb;
-
- # holds the path to the requested file
- protected $path = false;
-
- # holds the content of the page
- protected $content;
-
- public function __construct(ContainerInterface $c)
- {
- $this->c = $c;
- $this->settings = $this->c->get('settings');
- $this->structureLiveName = 'structure.txt';
- $this->structureDraftName = 'structure-draft.txt';
- }
-
- protected function render($response, $route, $data)
- {
- if(isset($_SESSION['old']))
- {
- unset($_SESSION['old']);
- }
- $response = $response->withoutHeader('Server');
- $response = $response->withoutHeader('X-Powered-By');
-
- if($this->c->request->getUri()->getScheme() == 'https')
- {
- $response = $response->withAddedHeader('Strict-Transport-Security', 'max-age=63072000');
- }
-
- $response = $response->withAddedHeader('X-Content-Type-Options', 'nosniff');
- $response = $response->withAddedHeader('X-Frame-Options', 'SAMEORIGIN');
- $response = $response->withAddedHeader('X-XSS-Protection', '1;mode=block');
- $response = $response->withAddedHeader('Referrer-Policy', 'no-referrer-when-downgrade');
-
- return $this->c->view->render($response, $route, $data);
- }
-
- protected function render404($response, $data = NULL)
- {
- return $this->c->view->render($response->withStatus(404), '/404.twig', $data);
- }
-
- protected function renderIntern404($response, $data = NULL)
- {
- return $this->c->view->render($response->withStatus(404), '/intern404.twig', $data);
- }
- protected function getValidator()
- {
- return new Validation();
- }
- protected function validateEditorInput()
- {
- $validate = new Validation();
- $vResult = $validate->editorInput($this->params);
-
- if(is_array($vResult))
- {
- $message = reset($vResult);
- $this->errors = ['errors' => $vResult];
- if(isset($message[0])){ $this->errors['errors']['message'] = $message[0]; }
- return false;
- }
- return true;
- }
- protected function validateBlockInput()
- {
- $validate = new Validation();
- $vResult = $validate->blockInput($this->params);
-
- if(is_array($vResult))
- {
- $message = reset($vResult);
- $this->errors = ['errors' => $vResult];
- if(isset($message[0])){ $this->errors['errors']['message'] = $message[0]; }
- return false;
- }
- return true;
- }
-
- protected function validateNavigationSort()
- {
- $validate = new Validation();
- $vResult = $validate->navigationSort($this->params);
-
- if(is_array($vResult))
- {
- $message = reset($vResult);
- $this->errors = ['errors' => $vResult];
- if(isset($message[0])){ $this->errors['errors']['message'] = $message[0]; }
- return false;
- }
- return true;
- }
- protected function validateNaviItem()
- {
- $validate = new Validation();
- $vResult = $validate->navigationItem($this->params);
-
- if(is_array($vResult))
- {
- $message = reset($vResult);
- $this->errors = ['errors' => $vResult];
- if(isset($message[0])){ $this->errors['errors']['message'] = $message[0]; }
- return false;
- }
- return true;
- }
- protected function validateBaseNaviItem()
- {
- $validate = new Validation();
- $vResult = $validate->navigationBaseItem($this->params);
-
- if(is_array($vResult))
- {
- $message = reset($vResult);
- $this->errors = ['errors' => $vResult];
- if(isset($message[0])){ $this->errors['errors']['message'] = $message[0]; }
- return false;
- }
- return true;
- }
-
- protected function setStructure($draft = false, $cache = true)
- {
- # set initial structure to false
- $structure = false;
- # name of structure-file for draft or live
- $filename = $draft ? $this->structureDraftName : $this->structureLiveName;
-
- # set variables and objects
- $this->write = new writeCache();
- # check, if cached structure is still valid
- if($cache && $this->write->validate('cache', 'lastCache.txt', 600))
- {
- # get the cached structure
- $structure = $this->write->getCache('cache', $filename);
- }
-
- # if no structure was found or cache is deactivated
- if(!$structure)
- {
- # scan the content of the folder
- $structure = Folder::scanFolder($this->settings['rootPath'] . $this->settings['contentFolder'], $draft);
- # if there is content, then get the content details
- if(count($structure) > 0)
- {
- # get the extended structure files with changes like navigation title or hidden pages
- $yaml = new writeYaml();
- $extended = $yaml->getYaml('cache', 'structure-extended.yaml');
- # create an array of object with the whole content of the folder and changes from extended file
- $structure = Folder::getFolderContentDetails($structure, $extended, $this->uri->getBaseUrl(), $this->uri->getBasePath());
- }
-
- # cache navigation
- $this->write->updateCache('cache', $filename, 'lastCache.txt', $structure);
- }
-
- $this->structure = $structure;
- return true;
- }
- protected function renameExtended($item, $newFolder)
- {
- # get the extended structure files with changes like navigation title or hidden pages
- $yaml = new writeYaml();
- $extended = $yaml->getYaml('cache', 'structure-extended.yaml');
- if(isset($extended[$item->urlRelWoF]))
- {
- $newUrl = $newFolder->urlRelWoF . '/' . $item->slug;
- $entry = $extended[$item->urlRelWoF];
-
- unset($extended[$item->urlRelWoF]);
-
- $extended[$newUrl] = $entry;
- $yaml->updateYaml('cache', 'structure-extended.yaml', $extended);
- }
- return true;
- }
- protected function deleteFromExtended()
- {
- # get the extended structure files with changes like navigation title or hidden pages
- $yaml = new writeYaml();
- $extended = $yaml->getYaml('cache', 'structure-extended.yaml');
- if($this->item->elementType == "file" && isset($extended[$this->item->urlRelWoF]))
- {
- unset($extended[$this->item->urlRelWoF]);
- $yaml->updateYaml('cache', 'structure-extended.yaml', $extended);
- }
- if($this->item->elementType == "folder")
- {
- $changed = false;
- # delete all entries with that folder url
- foreach($extended as $url => $entries)
- {
- if( strpos($url, $this->item->urlRelWoF) !== false )
- {
- $changed = true;
- unset($extended[$url]);
- }
- }
- if($changed)
- {
- $yaml->updateYaml('cache', 'structure-extended.yaml', $extended);
- }
- }
- }
- protected function setHomepage()
- {
- $contentFolder = Folder::scanFolderFlat($this->settings['rootPath'] . $this->settings['contentFolder']);
- if(in_array('index.md', $contentFolder))
- {
- $md = true;
- $status = 'published';
- }
- if(in_array('index.txt', $contentFolder))
- {
- $txt = true;
- $status = 'unpublished';
- }
- if(isset($txt) && isset($md))
- {
- $status = 'modified';
- }
- $active = false;
- if($this->params['url'] == '/' || $this->params['url'] == $this->uri->getBasePath() )
- {
- $active = 'active';
- }
- $this->homepage = ['status' => $status, 'active' => $active];
- }
- protected function setItem()
- {
- # search for the url in the structure
- $item = Folder::getItemForUrl($this->structure, $this->params['url'], $this->uri->getBasePath());
- if($item)
- {
- $this->item = $item;
- return true;
- }
- $this->errors = ['errors' => ['message' => 'requested page-url not found']];
- return false;
- }
-
- # determine if you want to write to published file (md) or to draft (txt)
- protected function setItemPath($fileType)
- {
- $this->path = $this->item->pathWithoutType . '.' . $fileType;
- }
-
- protected function setPublishStatus()
- {
- $this->item->published = false;
- $this->item->drafted = false;
-
- if(file_exists($this->settings['rootPath'] . $this->settings['contentFolder'] . $this->item->pathWithoutType . '.md'))
- {
- $this->item->published = true;
-
- # add file-type in case it is a folder
- $this->item->fileType = "md";
- }
-
- if(file_exists($this->settings['rootPath'] . $this->settings['contentFolder'] . $this->item->pathWithoutType . '.txt'))
- {
- $this->item->drafted = true;
-
- # add file-type in case it is a folder
- $this->item->fileType = "txt";
- }
-
- if(!$this->item->drafted && !$this->item->published && $this->item->elementType == "folder")
- {
- # set txt as default for a folder, so that we can create an index.txt for a folder.
- $this->item->fileType = "txt";
- }
- }
-
- protected function deleteContentFiles($fileTypes, $folder = false)
- {
- $basePath = $this->settings['rootPath'] . $this->settings['contentFolder'];
- foreach($fileTypes as $fileType)
- {
- if(file_exists($basePath . $this->item->pathWithoutType . '.' . $fileType) && !unlink($basePath . $this->item->pathWithoutType . '.' . $fileType) )
- {
- $this->errors = ['message' => 'We could not delete the file, please check, if the file is writable.'];
- }
- }
-
- if($this->errors)
- {
- return false;
- }
-
- return true;
- }
-
- protected function deleteContentFolder()
- {
- $basePath = $this->settings['rootPath'] . $this->settings['contentFolder'];
- $path = $basePath . $this->item->path;
- if(file_exists($path))
- {
- $files = array_diff(scandir($path), array('.', '..'));
-
- # check if there are published pages or folders inside, then stop the operation
- foreach ($files as $file)
- {
- if(is_dir(realpath($path) . DIRECTORY_SEPARATOR . $file))
- {
- $this->errors = ['message' => 'Please delete the sub-folder first.'];
- }
- if(substr($file, -3) == '.md' )
- {
- $this->errors = ['message' => 'Please unpublish all pages in the folder first.'];
- }
- }
- if(!$this->errors)
- {
- foreach ($files as $file)
- {
- unlink(realpath($path) . DIRECTORY_SEPARATOR . $file);
- }
- return rmdir($path);
- }
- # delete all files from the extended file
- $this->deleteFromExtended();
- }
- return false;
- }
-
- protected function setContent()
- {
- # if the file exists
- if($this->item->published OR $this->item->drafted)
- {
- $content = $this->write->getFile($this->settings['contentFolder'], $this->path);
- if($this->item->fileType == 'txt')
- {
- # decode the json-draft to an array
- $content = json_decode($content);
- }
- }
- elseif($this->item->elementType == "folder")
- {
- $content = '';
- }
- else
- {
- $this->errors = ['errors' => ['message' => 'requested file not found']];
- return false;
- }
-
- $this->content = $content;
- return true;
- }
- }
|