aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Update.php
blob: 7a8db34699a053e01664f7dd04a3ea495e18e698 (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
<?php
namespace Zotlabs\Module;


class Update extends \Zotlabs\Web\Controller {

	function get() {

		$profile_uid = $_GET['p'] ?? 0;

		// it's probably safe to do this for all modules and not just a limited subset,
		// but it needs to be verified.

		if((! $profile_uid) && in_array(argv(1),['display','search','pubstream','home']))
			$profile_uid = (-1);

		if(argc() < 2) {
			killme();
		}

		// These modules don't have a completely working liveUpdate implementation currently

		if(in_array(strtolower(argv(1)),['articles','cards']))
			killme();

		$module = "\\Zotlabs\\Module\\" . ucfirst(argv(1));
		$load = (((argc() > 2) && (argv(2) == 'load')) ? 1 : 0);

		$mod = new $module;

		header("Content-type: text/html");

		\App::$argv = [ argv(1) ];
		\App::$argc = 1;

		echo "<!DOCTYPE html><html><body><section>\r\n";
		echo $mod->get($profile_uid, $load);
		echo "</section></body></html>\r\n";

		killme();

	}
}