summaryrefslogtreecommitdiffstats
path: root/modules-available/main/page.inc.php
blob: 0a9acd81ec6712d7dc9ce4af1fd4409d43414bad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php

class Page_Main extends Page
{

	private $sysconfig;
	private $minilinux;
	private $vmstore;
	private $ipxe;
	private $delPending;

	protected function doPreprocess()
	{
		User::load();
		if (User::isLoggedIn()) {
			$this->sysconfig = !file_exists(CONFIG_HTTP_DIR . '/default/config.tgz');
			$this->minilinux = !file_exists(CONFIG_HTTP_DIR . '/default/kernel') || !file_exists(CONFIG_HTTP_DIR . '/default/initramfs-stage31') || !file_exists(CONFIG_HTTP_DIR . '/default/stage32.sqfs');
			$this->vmstore = !is_array(Property::getVmStoreConfig());
			$this->ipxe = !preg_match('/^\d+\.\d+\.\d+\.\d+$/', Property::getServerIp());
			Property::setNeedsSetup(($this->sysconfig || $this->minilinux || $this->vmstore || $this->ipxe) ? 1 : 0);
			$res = Database::queryFirst("SELECT Count(*) AS cnt FROM sat.imageversion WHERE deletestate = 'SHOULD_DELETE'", array(), true);
			$this->delPending = isset($res['cnt']) ? $res['cnt'] : 0;
		}
	}

	protected function doRender()
	{
		if (!User::isLoggedIn()) {
			Render::addTemplate('page-main-guest', array(
				'register' => (Database::queryFirst('SELECT userid FROM user LIMIT 1') === false)
			));
			return;
		}
		// Logged in here
		
		// Load news
		$lines = array();
		$paginate = new Paginate("SELECT newsid, dateline, title, content FROM news ORDER BY dateline DESC", 10);
		$res = $paginate->exec();
		while ($row = $res->fetch(PDO::FETCH_ASSOC)) {
			if(count($lines) >= 3) break;
			$lines[] = $row;
		}
		
		Render::addTemplate('page-main', array(
			'user' => User::getName(),
			'sysconfig' => $this->sysconfig,
			'minilinux' => $this->minilinux,
			'vmstore' => $this->vmstore,
			'ipxe' => $this->ipxe,
			'delpending' => $this->delPending,
			'news' => $lines
		));
	}

	protected function doAjax()
	{
		User::isLoggedIn();
		die('Status: DB running');
	}

}