blob: 29238dc840dc33a3e4d9396bdb51c99b025d9cef [file] [log] [blame]
kitlo2e780dc2010-01-12 17:58:32 +00001<?php
2/*******************************************************************************
3 * Copyright (c) 2010 Eclipse Foundation and others.
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Kit Lo (IBM) - Initial API and implementation
11 * Kit Lo (IBM) - Bug 299402, Extract properties files from Eclipse project update sites for translation
12*******************************************************************************/
13/*
14 * Extract properties files from update sites
15 */
kitlo2e780dc2010-01-12 17:58:32 +000016$temp_dir = "/tmp/tmp-babel/";
17$debug = TRUE;
kitlo3efbb262010-01-13 15:18:57 +000018$files = array();
kitlo2e780dc2010-01-12 17:58:32 +000019
20header("Content-type: text/plain");
21include("global.php");
22InitPage("");
23
24$headless = 0;
25if (!isset($User)) {
26 echo "User not defined - running headless\n";
27 $User = getGenieUser();
28 $headless = 1;
29}
30
31require(dirname(__FILE__) . "/../classes/file/file.class.php");
32global $dbh;
33
kitlo0da4aca2010-01-13 05:08:26 +000034$temp_unzips_dir = $temp_dir . "unzips/";
35if (is_dir($temp_unzips_dir)) {
36 exec("rm -rf $temp_unzips_dir");
kitlo2e780dc2010-01-12 17:58:32 +000037}
kitlo0da4aca2010-01-13 05:08:26 +000038mkdir($temp_unzips_dir, 0777, TRUE) || die("***ERROR: Cannot create working directory: $temp_unzips_dir\n");
39
40global $addon;
41$context = $addon->callHook('context');
42if ($context == "live") {
43 $rsync_host = "download.eclipse.org::eclipseMirror/";
44} else {
45 $rsync_host = "rsync.osuosl.org::eclipse/";
46}
kitlo2e780dc2010-01-12 17:58:32 +000047
kitlod66aa992010-01-22 17:18:19 +000048# Get all active update sites
49$sql = "SELECT * FROM map_files WHERE is_active = 1 AND is_map_file = 0";
50$rs_maps = mysql_query($sql, $dbh);
51while($update_site = mysql_fetch_assoc($rs_maps)) {
52 $site_url = $update_site['location'];
53 $project_id = $update_site['project_id'];
54 $version = $update_site['version'];
kitlo0da4aca2010-01-13 05:08:26 +000055 # Sample dirs:
56 # $site_url http://download.eclipse.org/eclipse/updates/3.6milestones/S-3.6M4-200912101301
57 # $site_dir eclipse/updates/3.6milestones/S-3.6M4-200912101301/
58 # $site_plugins_dir eclipse/updates/3.6milestones/S-3.6M4-200912101301/plugins/
59 # $temp_site_dir /tmp/tmp-babel/update_sites/eclipse/3.6/
60 # $temp_unzip_dir /tmp/tmp-babel/unzips/eclipse/3.6/
61 $site_dir = substr($site_url, strpos($site_url, "/", 7) + 1) . "/";
62 $site_plugins_dir = $site_dir . "/plugins/";
63 $temp_site_dir = $temp_dir . "update_sites/" . $project_id . "/" . $version . "/";
64 $temp_unzip_dir = $temp_dir . "unzips/" . $project_id . "/" . $version . "/";
kitlo2e780dc2010-01-12 17:58:32 +000065
kitlo3efbb262010-01-13 15:18:57 +000066 # Find all current active files for this project version
67 $sql = "SELECT * FROM files WHERE is_active = 1 AND project_id = \"$project_id\" AND version = \"$version\"";
68 $rs_files = mysql_query($sql, $dbh);
69 while ($myrow_files = mysql_fetch_assoc($rs_files)) {
70 $file = new File();
71 $file->project_id = $myrow_files['project_id'];
72 $file->version = $myrow_files['version'];
73 $file->name = $myrow_files['name'];
74 $file->plugin_id = $myrow_files['plugin_id'];
75 $file->file_id = $myrow_files['file_id'];
76 $files[$file->file_id] = $file;
77 }
78
kitlo0da4aca2010-01-13 05:08:26 +000079 # Rsync update site
80 exec("mkdir -p $temp_site_dir; rsync -av --delete $rsync_host$site_plugins_dir $temp_site_dir");
81
82 # Make unzip dir
83 mkdir($temp_unzip_dir, 0777, TRUE);
84
85 # Unzip properties files in each jar
86 chdir($temp_site_dir);
kitlo2e780dc2010-01-12 17:58:32 +000087 foreach (glob("*.jar") as $jar_name) {
88 # Sample jar name: org.eclipse.ui.workbench_3.6.0.I20100105-1530.jar
89 #
90 # Remove plugin version from jar name:
91 # org.eclipse.ui.workbench_3.6.0.I20100105-1530.jar => org.eclipse.ui.workbench
92 $temp_str = $jar_name;
93 $temp_str = substr($temp_str, 0, strrpos($temp_str, "."));
94 $temp_str = substr($temp_str, 0, strrpos($temp_str, "."));
95 $temp_str = substr($temp_str, 0, strrpos($temp_str, "_"));
96 $plugin_id = $temp_str;
97
kitlo20071c52010-01-13 14:10:52 +000098 if (!is_dir($temp_unzip_dir . $plugin_id)) {
99 mkdir($temp_unzip_dir . $plugin_id, 0777, TRUE);
100 }
kitlo0da4aca2010-01-13 05:08:26 +0000101 chdir($temp_unzip_dir . $plugin_id);
kitlo281a6412010-01-13 13:34:57 +0000102 exec("unzip -o -q $temp_site_dir$jar_name");
kitlo2e780dc2010-01-12 17:58:32 +0000103 }
104
kitlo0da4aca2010-01-13 05:08:26 +0000105 # Collect properties file names
kitlo2e780dc2010-01-12 17:58:32 +0000106 $properties_file_names = array();
kitlo0da4aca2010-01-13 05:08:26 +0000107 chdir($temp_unzip_dir);
kitlo2e780dc2010-01-12 17:58:32 +0000108 exec("find . -name *.properties", $properties_file_names);
109 sort($properties_file_names);
110
kitlo0da4aca2010-01-13 05:08:26 +0000111 # Parse each properties file
kitlo2e780dc2010-01-12 17:58:32 +0000112 echo "Start processing properties files in project $project_id version $version...\n";
113 foreach ($properties_file_names as $properties_file_name) {
114 $properties_file_name = substr($properties_file_name, 2);
115 $plugin_id = substr($properties_file_name, 0, strpos($properties_file_name, "/"));
116 $file_id = File::getFileID($properties_file_name, $project_id, $version);
117
118 if ($files[$file_id] != null) {
119 $file = $files[$file_id];
120 $file->is_active = 1;
121 unset($files[$file_id]);
122 } else {
123 $file = new File();
124 $file->project_id = $project_id;
125 $file->version = $version;
126 $file->name = $properties_file_name;
127 $file->plugin_id = $plugin_id;
128 $file->is_active = 1;
129 }
130 if (!$file->save()) {
131 echo "***ERROR: Cannot save file $file->name\n";
132 } else {
kitlo0da4aca2010-01-13 05:08:26 +0000133 $file_name = $temp_unzip_dir . $properties_file_name;
kitlo2e780dc2010-01-12 17:58:32 +0000134 $file->parseProperties(file_get_contents($file_name));
135 if ($debug) {
136 echo " " . $file->name . "\n";
137 }
138 }
139 }
140 echo "Done processing " . sizeof($properties_file_names) . " properties files in project $project_id version $version\n\n";
141}
142
143# Deactivate the rest of the files
kitlod66aa992010-01-22 17:18:19 +0000144echo "Start deactivating inactive properties files in all projects above...\n";
kitlo2e780dc2010-01-12 17:58:32 +0000145foreach ($files as $file) {
146 $file->is_active = 0;
147 if (!$file->save()) {
148 echo "***ERROR: Cannot deactivate file $file->name\n";
149 }
150 if ($debug) {
151 echo " " . $file->name . "\n";
152 }
153}
kitlod66aa992010-01-22 17:18:19 +0000154echo "Done deactivating " . sizeof($files) . " inactive properties files in all projects above\n\n";
kitlo2e780dc2010-01-12 17:58:32 +0000155
156if ($headless) {
157 $User = null;
158}
159
160echo "Done\n";
161?>