<?php
require_once('Auth.class.php');

Router::register('config', 'Config', 'index');

class Config extends Controller {
	public function index($routed, $remainder) {
		$uid = Login::isLoggedIn();
		if ($uid===false || !Auth::getObj($uid)->isAdmin()) {
			$this->http401($routed, $remainder);
			return;
		}
		
		$method = $_SERVER['REQUEST_METHOD'];
		switch ($method) {
		case 'PUT': $_POST = $_PUT;
		case 'POST':
			// We're PUTing an updated configuration.
			$this->update();
			break;
		}
		$this->show_index();
	}
	private function show_index() {
		
	}
	private function update() {
		
	}
}