summaryrefslogtreecommitdiff
blob: 880fb8e589d2f59cbbbbdb9a84d777664113dcec (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
<?

	require_once 'header.php';
	
	if(!$tree) {
		$tree =& PortageTree::singleton();
	}
	
	require_once 'class.portage.category.php';
	require_once 'class.db.category.php';
	
	$table = 'category';
	
	$sql = "SELECT COUNT(1) FROM category;";
	$count = $db->getOne($sql);
	
	// If no categories, reset the sequence
	if($count === "0") {
		$sql = "ALTER SEQUENCE category_id_seq RESTART WITH 1;";
		$db->query($sql);
	}
	
	$arr = $tree->getCategories();
	
	$arr_diff = importDiff($table, $arr);
	
	if(count($arr_diff['delete'])) {
		foreach($arr_diff['delete'] as $name) {
			$sql = "DELETE FROM $table WHERE name = ".$db->quote($name).";";
			shell::msg($sql);
			$db->query($sql);
		}
	}
	
	if(count($arr_diff['insert'])) {
		foreach($arr_diff['insert'] as $name) {
			$arr_insert = array('name' => $name);
			$db->autoExecute($table, $arr_insert, MDB2_AUTOQUERY_INSERT);
		
			$category_id = $db->lastInsertID();
			
			$c = new PortageCategory($name);
			
			foreach($c->getDescriptions() as $lingua => $description) {
			
				$arr_insert = array(
					'category' => $category_id,
					'lingua' => $lingua,
					'description' => $description,
				);
				
				$db->autoExecute('category_description', $arr_insert, MDB2_AUTOQUERY_INSERT);
				
			}
		
		}
		
	}
	
	// FIXME I should check the mtimes of the directories
	// instead, just to get an idea of when things were
	// last changed.  Also, store the metadata mtime.
	
	// Update descriptions
	if($verbose)
		shell::msg("Updating descriptions");
	$sql = "SELECT name, id FROM category;";
	$arr = $db->getAssoc($sql);
	
	// FIXME work with linguas
// 	foreach($arr as $category_name => $category) {
// 	
// 		$db_category = new DBCategory($category);
// 		$c = new PortageCategory($category_name);
// 		
// 		if($db_category->description != $c->description['en'])
// 			$db_category->description = $c->description['en'];
// 	
// 	}

?>