aboutsummaryrefslogtreecommitdiff
path: root/r7r_repo/models.php
blob: 7c5603398244d12d3ac1bced1c76b588e9096f72 (plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<?php

require_once(dirname(__FILE__) . "/db.php");
require_once(dirname(__FILE__) . "/utils.php");

/* Exceptions copied from Ratatöskr */
class DoesNotExistError extends Exception { }
class AlreadyExistsError extends Exception { }
class NotAllowedError extends Exception { }

/* copied from Ratatöskr: */
abstract class BySQLRowEnabled
{
	protected function __construct() {  }
	
	abstract protected function populate_by_sqlrow($sqlrow);
	
	protected static function by_sqlrow($sqlrow)
	{
		$obj = new static();
		$obj->populate_by_sqlrow($sqlrow);
		return $obj;
	}
}

/* SettingsIterator ans Settings copied from Ratatöskr */

class SettingsIterator implements Iterator
{
	private $index;
	private $keys;
	private $settings_obj;
	
	public function __construct($settings_obj, $keys)
	{
		$this->index = 0;
		$this->settings_obj = $settings_obj;
		$this->keys = $keys;
	}
	
	/* Iterator implementation */
	public function current() { return $this->settings_obj[$this->keys[$this->index]]; }
	public function key()     { return $this->keys[$this->index]; }
	public function next()    { ++$this->index; }
	public function rewind()  { $this->index = 0; }
	public function valid()   { return $this->index < count($this->keys); }
}

/*
 * Class: Settings
 * A class that holds the Settings of Ratatöskr.
 * You can access settings like an array.
 */
class Settings implements ArrayAccess, IteratorAggregate, Countable
{
	/* Singleton implementation */
	private function __copy() {}
	private static $instance = NULL;
	/*
	 * Constructor: get_instance
	 * Get an instance of this class.
	 * All instances are equal (ie. this is a singleton), so you can also use
	 * the global <$ratatoeskr_settings> instance.
	 */
	public static function get_instance()
	{
		if(self::$instance === NULL)
			self::$instance = new self;
		return self::$instance;
	}
	
	private $buffer;
	private $to_be_deleted;
	private $to_be_created;
	private $to_be_updated;
	
	private function __construct()
	{
		$this->buffer = array();
		$result = qdb("SELECT `key`, `value` FROM `PREFIX_settings_kvstorage` WHERE 1");
		while($sqlrow = mysql_fetch_assoc($result))
			$this->buffer[$sqlrow["key"]] = unserialize(base64_decode($sqlrow["value"]));
		
		$this->to_be_created = array();
		$this->to_be_deleted = array();
		$this->to_be_updated = array();
	}
	
	public function save()
	{
		foreach($this->to_be_deleted as $k)
			qdb("DELETE FROM `PREFIX_settings_kvstorage` WHERE `key` = '%s'", $k);
		foreach($this->to_be_updated as $k)
			qdb("UPDATE `PREFIX_settings_kvstorage` SET `value` = '%s' WHERE `key` = '%s'", base64_encode(serialize($this->buffer[$k])), $k);
		foreach($this->to_be_created as $k)
			qdb("INSERT INTO `PREFIX_settings_kvstorage` (`key`, `value`) VALUES ('%s', '%s')", $k, base64_encode(serialize($this->buffer[$k])));
		$this->to_be_created = array();
		$this->to_be_deleted = array();
		$this->to_be_updated = array();
	}
	
	/* ArrayAccess implementation */
	public function offsetExists($offset)
	{
		return isset($this->buffer[$offset]);
	}
	public function offsetGet($offset)
	{
		return $this->buffer[$offset];
	}
	public function offsetSet ($offset, $value)
	{
		if(!$this->offsetExists($offset))
		{
			if(in_array($offset, $this->to_be_deleted))
			{
				$this->to_be_updated[] = $offset;
				unset($this->to_be_deleted[array_search($offset, $this->to_be_deleted)]);
			}
			else
				$this->to_be_created[] = $offset;
		}
		elseif((!in_array($offset, $this->to_be_created)) and (!in_array($offset, $this->to_be_updated)))
			$this->to_be_updated[] = $offset;
		$this->buffer[$offset] = $value;
	}
	public function offsetUnset($offset)
	{
		if(in_array($offset, $this->to_be_created))
			unset($this->to_be_created[array_search($offset, $this->to_be_created)]);
		else
			$this->to_be_deleted[] = $offset;
		unset($this->buffer[$offset]);
	}
	
	/* IteratorAggregate implementation */
	public function getIterator() { return new SettingsIterator($this, array_keys($this->buffer)); }
	
	/* Countable implementation */
	public function count() { return count($this->buffer); }
}

$settings = Settings::get_instance();

/* users */
class User extends BySQLRowEnabled
{
	private $name;
	private $id;
	
	public $pwhash;
	public $isadmin;
	
	protected function __construct() {}
	
	protected function populate_by_sqlrow($sqlrow)
	{
		$this->id      = $sqlrow["id"];
		$this->name    = $sqlrow["name"];
		$this->pwhash  = $sqlrow["pwhash"];
		$this->isadmin = $sqlrow["isadmin"] == 1;
	}
	
	function get_id()   { return $this->id;   }
	function get_name() { return $this->name; }
	
	public static function create($name)
	{
		try
		{
			self::by_name($name);
			throw new AlreadyExistsError();
		}
		catch(DoesNotExistError $e)
		{
			$obj          = new self;
			$obj->name    = $name;
			$obj->pwhash  = "";
			$obj->isadmin = False;
			qdb("INSERT INTO `PREFIX_users` (`name`, `pwhash`, `isadmin`) VALUES ('%s', '', 0)", $name);
			$obj->id = mysql_insert_id();
			return $obj;
		}
	}
	
	public static function by_id($id)
	{
		$result = qdb("SELECT `id`, `name`, `pwhash`, `isadmin` FROM `PREFIX_users` WHERE `id` = %d", $id);
		$sqlrow = mysql_fetch_assoc($result);
		if($sqlrow === False)
			throw new DoesNotExistError();
		return self::by_sqlrow($sqlrow);
	}
	
	public static function by_name($name)
	{
		$result = qdb("SELECT `id`, `name`, `pwhash`, `isadmin` FROM `PREFIX_users` WHERE `name` = '%s'", $name);
		$sqlrow = mysql_fetch_assoc($result);
		if($sqlrow === False)
			throw new DoesNotExistError();
		return self::by_sqlrow($sqlrow);
	}
	
	public static function all()
	{
		$rv = array();
		$result = qdb("SELECT `id`, `name`, `pwhash`, `isadmin` FROM `PREFIX_users` WHERE 1");
		while($sqlrow = mysql_fetch_assoc($result))
			$rv[] = self::by_sqlrow($sqlrow);
		return $rv;
	}
	
	public function get_packages()
	{
		$rv = array();
		$result = qdb("SELECT `id`, `name`, `user`, `author`, `lastversion`, `description`, `lastupdate`, `txtversion` FROM `PREFIX_packages` WHERE `user` = %d", $this->id);
		while($sqlrow = mysql_fetch_assoc($result))
			$rv[] = Package::by_sqlrow($sqlrow);
		return $rv;
	}
	
	public function save()
	{
		qdb("UPDATE `PREFIX_users` SET `isadmin` = %d, `pwhash` = '%s' WHERE `id` = %d", ($this->isadmin ? 1 : 0), $this->pwhash, $this->id);
	}
	
	public function delete()
	{
		qdb("DELETE FROM `PREFIX_users` WHERE `id` = %d", $this->id);
	}
}

class Package extends BySQLRowEnabled
{
	private $id;
	private $name;
	private $user;
	
	public $lastversion;
	public $description;
	public $lastupdate;
	public $txtversion;
	
	public function get_id()   { return $this->id;   }
	public function get_name() { return $this->name; }
	public function get_user() { return $this->user; }
	
	protected function __construct() {}
	
	protected function populate_by_sqlrow($sqlrow)
	{
		$this->id          = $sqlrow["id"];
		$this->name        = $sqlrow["name"];
		$this->user        = User::by_id($sqlrow["user"]);
		$this->author      = $sqlrow["author"];
		$this->lastversion = $sqlrow["lastversion"];
		$this->description = $sqlrow["description"];
		$this->lastupdate  = $sqlrow["lastupdate"];
		$this->txtversion  = $sqlrow["txtversion"];
	}
	
	public static function create($name, $user)
	{
		if(preg_match("/^[0-9a-zA-Z_\\-]+$/", $name) != 1)
			throw new InvalidArgumentException("Invalid package name (must be min 1 char, 0-9A-Za-z_-");
		try
		{
			self::by_name($name);
			throw new AlreadyExistsError();
		}
		catch(DoesNotExistError $e)
		{
			$obj = new self;
			$obj->name        = $name;
			$obj->user        = $user;
			$obj->author      = "";
			$obj->lastupdate  = time();
			$obj->lastversion = 0;
			$obj->txtversion  = "";
			$obj->description = "";
			
			qdb("INSERT INTO `PREFIX_packages` (`name`, `user`, `author`, `lastupdate`, `lastversion`, `txtversion`, `description`) VALUES ('%s', %d, '', UNIX_TIMESTAMP(), 0, '', '')", $name, $user->get_id());
			$obj->id = mysql_insert_id();
			
			mkdir(dirname(__FILE__) . "/../packages/" . $obj->name);
			mkdir(dirname(__FILE__) . "/../packages/" . $obj->name . "/versions");
			
			return $obj;
		}
	}
	
	public static function by_id($id)
	{
		$result = qdb("SELECT `id`, `name`, `author`, `user`, `lastversion`, `description`, `lastupdate`, `txtversion` FROM `PREFIX_packages` WHERE `id` = %d", $id);
		$sqlrow = mysql_fetch_assoc($result);
		if($sqlrow === False)
			throw new DoesNotExistError();
		return self::by_sqlrow($sqlrow);
	}
	
	public static function by_name($name)
	{
		$result = qdb("SELECT `id`, `name`, `author`, `user`, `lastversion`, `description`, `lastupdate`, `txtversion` FROM `PREFIX_packages` WHERE `name` = '%s'", $name);
		$sqlrow = mysql_fetch_assoc($result);
		if($sqlrow === False)
			throw new DoesNotExistError();
		return self::by_sqlrow($sqlrow);
	}
	
	public static function update_lists()
	{
		$packagelist = array();
		$result = qdb("SELECT `id`, `name`, `author`, `user`, `lastversion`, `description`, `lastupdate`, `txtversion` FROM `PREFIX_packages` WHERE 1");
		while($sqlrow = mysql_fetch_assoc($result))
			$packagelist[] = array($sqlrow["name"], $sqlrow["lastversion"] + 0, $sqlrow["description"]);
		file_put_contents(dirname(__FILE__) . "/../packagelist", serialize($packagelist));
	}
	
	public static function all()
	{
		$rv = array();
		$result = qdb("SELECT `id`, `name`, `author`, `user`, `lastversion`, `description`, `lastupdate`, `txtversion` FROM `PREFIX_packages` WHERE 1");
		while($sqlrow = mysql_fetch_assoc($result))
			$rv[] = self::by_sqlrow($sqlrow);
		return $rv;
	}
	
	public static function latest()
	{
		$rv = array();
		$result = qdb("SELECT `id`, `name`, `author`, `user`, `lastversion`, `description`, `lastupdate`, `txtversion` FROM `PREFIX_packages` WHERE 1 ORDER BY `lastupdate` DESC LIMIT 0,15");
		while($sqlrow = mysql_fetch_assoc($result))
			$rv[] = self::by_sqlrow($sqlrow);
		return $rv;
	}
	
	public static function search($search)
	{
		$rv = array();
		$result = qdb("SELECT `id`, `name`, `author`, `user`, `lastversion`, `description`, `lastupdate`, `txtversion` FROM `PREFIX_packages` WHERE `name` LIKE '%%%s%%' OR `description` LIKE '%%%s%%'", $search, $search);
		while($sqlrow = mysql_fetch_assoc($result))
			$rv[] = self::by_sqlrow($sqlrow);
		return $rv;
	}
	
	public function newversion($pkg)
	{
		global $settings;
		if($pkg->name != $this->name)
			throw new NotAllowedError("Package name not equal.");
		if($pkg->versioncount <= $this->lastversion)
			throw new NotAllowedError("Older or same version.");
		$pkg->updatepath = $settings["repo_baseurl"] . "/packages/" . urlencode($this->name) . "/update";
		
		$pkg_ser = $pkg->save();
		file_put_contents(dirname(__FILE__) . "/../packages/" . urlencode($this->name) . "/versions/" . $pkg->versioncount, $pkg_ser);
		file_put_contents(dirname(__FILE__) . "/../packages/" . urlencode($this->name) . "/versions/current", $pkg_ser);
		$meta = $pkg->extract_meta();
		file_put_contents(dirname(__FILE__) . "/../packages/" . urlencode($this->name) . "/meta", serialize($meta));
		
		$this->lastversion = $pkg->versioncount;
		$this->txtversion  = $pkg->versiontext;
		$this->description = $pkg->short_description;
		$this->author      = $pkg->author;
		$this->lastupdate  = time();
		$this->save();
		
		$update_info = array(
			"current-version" => $this->lastversion,
			"dl-path"         => $settings["repo_baseurl"] . "/packages/" . urlencode($this->name) . "/versions/" . $this->lastversion
		);
		
		file_put_contents(dirname(__FILE__) . "/../packages/" . urlencode($this->name) . "/update", serialize($update_info));
		
		self::update_lists();
	}
	
	public function save()
	{
		qdb("UPDATE `PREFIX_packages` SET `lastversion` = %d, `author` = '%s', `lastupdate` = %d, `txtversion` = '%s', `description` = '%s' WHERE `id` = %d", $this->lastversion, $this->author, $this->lastupdate, $this->txtversion, $this->description, $this->id);
	}
	
	public function delete()
	{
		qdb("DELETE FROM `PREFIX_packages` WHERE `id` = %d", $this->id);
		delete_directory(dirname(__FILE__) . "/../packages/" . $this->name);
		self::update_lists();
	}
}

function update_repometa()
{
	global $settings;
	file_put_contents(dirname(__FILE__) . "/../repometa", serialize(array(
		"name"        => $settings["repo_name"],
		"description" => $settings["repo_description"]
	)));
}

?>