summaryrefslogtreecommitdiff
path: root/src/SemanticScuttle/Service/servicefactory.php
blob: b5215e385152dde28183e1bfcd3c6bf5fd5e9c9a (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
<?php
/* Connect to the database and build services */

class ServiceFactory {
	function ServiceFactory(&$db, $serviceoverrules = array()) {
	}

	function &getServiceInstance($name, $servicedir = NULL) {
		global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype;
		static $instances = array();
		static $db;
		if (!isset($db)) {
			require_once(dirname(__FILE__) .'/../includes/db/'. $dbtype .'.php');
			$db = new sql_db();
			$db->sql_connect($dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist);
			if(!$db->db_connect_id) {
				message_die(CRITICAL_ERROR, "Could not connect to the database", $db);
			}
			$db->sql_query("SET NAMES UTF8"); 
		}		
		
		if (!isset($instances[$name])) {
			if (isset($serviceoverrules[$name])) {
				$name = $serviceoverrules[$name];
			}
			if (!class_exists($name)) {
				if (!isset($servicedir)) {
					$servicedir = dirname(__FILE__) .'/';
				}
								
				require_once($servicedir . strtolower($name) . '.php');
			}
			$instances[$name] = call_user_func(array($name, 'getInstance'), $db);
		}
		return $instances[$name];
	}
}
?>