2020-02-09 23:02:19 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Elements;
|
|
|
|
|
2020-04-03 15:56:04 +02:00
|
|
|
use Objects\User;
|
|
|
|
|
2020-02-09 23:02:19 +01:00
|
|
|
abstract class Document {
|
|
|
|
|
2020-04-03 15:56:04 +02:00
|
|
|
protected Head $head;
|
|
|
|
protected Body $body;
|
|
|
|
protected User $user;
|
|
|
|
protected bool $databaseRequired;
|
2020-06-19 16:51:41 +02:00
|
|
|
private ?string $activeView;
|
2020-02-09 23:02:19 +01:00
|
|
|
|
2020-06-19 16:51:41 +02:00
|
|
|
public function __construct(User $user, $headClass, $bodyClass, ?string $view = NULL) {
|
2020-02-09 23:02:19 +01:00
|
|
|
$this->head = new $headClass($this);
|
|
|
|
$this->body = new $bodyClass($this);
|
|
|
|
$this->user = $user;
|
2020-04-02 21:39:02 +02:00
|
|
|
$this->databaseRequired = true;
|
2020-06-19 16:51:41 +02:00
|
|
|
$this->activeView = $view;
|
2020-02-09 23:02:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getHead() { return $this->head; }
|
|
|
|
public function getBody() { return $this->body; }
|
|
|
|
public function getSQL() { return $this->user->getSQL(); }
|
|
|
|
public function getUser() { return $this->user; }
|
|
|
|
|
2020-06-20 15:49:53 +02:00
|
|
|
public function getView() : ?View {
|
|
|
|
|
|
|
|
$file = getClassPath($this->activeView);
|
|
|
|
if(!file_exists($file) || !is_subclass_of($this->activeView, View::class)) {
|
|
|
|
return null;
|
|
|
|
}
|
2020-02-09 23:02:19 +01:00
|
|
|
|
2020-06-20 15:49:53 +02:00
|
|
|
return new $this->activeView($this);
|
2020-02-09 23:02:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getCode() {
|
|
|
|
|
2020-04-02 21:39:02 +02:00
|
|
|
if ($this->databaseRequired) {
|
2020-02-09 23:02:19 +01:00
|
|
|
$sql = $this->user->getSQL();
|
|
|
|
if (is_null($sql)) {
|
|
|
|
die("Database is not configured yet.");
|
2020-02-10 12:32:53 +01:00
|
|
|
} else if(!$sql->isConnected()) {
|
2020-02-09 23:02:19 +01:00
|
|
|
die("Database is not connected: " . $sql->getLastError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$body = $this->body->getCode();
|
|
|
|
$head = $this->head->getCode();
|
2020-06-20 15:49:53 +02:00
|
|
|
$lang = $this->user->getLanguage()->getShortCode();
|
2020-02-09 23:02:19 +01:00
|
|
|
|
|
|
|
$html = "<!DOCTYPE html>";
|
2020-06-20 15:49:53 +02:00
|
|
|
$html .= "<html lang=\"$lang\">";
|
2020-02-09 23:02:19 +01:00
|
|
|
$html .= $head;
|
|
|
|
$html .= $body;
|
|
|
|
$html .= "</html>";
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2020-04-03 15:56:04 +02:00
|
|
|
}
|