blob: db64c2f6547af26c00ec610f1e96c070cd65d1a7 [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
kitlo3e175f42010-01-23 02:26:31 +000066 # Get all current active files for this project version
kitlo3efbb262010-01-13 15:18:57 +000067 $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
kitlo3e175f42010-01-23 02:26:31 +000079 # Get all plugin exclude patterns for this project version
80 $sql = "SELECT pattern FROM plugin_exclude_patterns WHERE project_id = \"$project_id\" AND version = \"$version\"";
81 $rs_patterns = mysql_query($sql, $dbh);
82 $patterns = Array();
83 while ($myrow_patterns = mysql_fetch_assoc($rs_patterns)) {
84 $patterns[] = $myrow_patterns['pattern'];
85 }
86
kitlo0da4aca2010-01-13 05:08:26 +000087 # Rsync update site
88 exec("mkdir -p $temp_site_dir; rsync -av --delete $rsync_host$site_plugins_dir $temp_site_dir");
89
90 # Make unzip dir
91 mkdir($temp_unzip_dir, 0777, TRUE);
92
93 # Unzip properties files in each jar
94 chdir($temp_site_dir);
kitlo2e780dc2010-01-12 17:58:32 +000095 foreach (glob("*.jar") as $jar_name) {
96 # Sample jar name: org.eclipse.ui.workbench_3.6.0.I20100105-1530.jar
97 #
98 # Remove plugin version from jar name:
99 # org.eclipse.ui.workbench_3.6.0.I20100105-1530.jar => org.eclipse.ui.workbench
100 $temp_str = $jar_name;
101 $temp_str = substr($temp_str, 0, strrpos($temp_str, "."));
102 $temp_str = substr($temp_str, 0, strrpos($temp_str, "."));
103 $temp_str = substr($temp_str, 0, strrpos($temp_str, "_"));
104 $plugin_id = $temp_str;
105
kitlo20071c52010-01-13 14:10:52 +0000106 if (!is_dir($temp_unzip_dir . $plugin_id)) {
107 mkdir($temp_unzip_dir . $plugin_id, 0777, TRUE);
108 }
kitlo0da4aca2010-01-13 05:08:26 +0000109 chdir($temp_unzip_dir . $plugin_id);
kitlo281a6412010-01-13 13:34:57 +0000110 exec("unzip -o -q $temp_site_dir$jar_name");
kitlo2e780dc2010-01-12 17:58:32 +0000111 }
112
kitlo0da4aca2010-01-13 05:08:26 +0000113 # Collect properties file names
kitlo2e780dc2010-01-12 17:58:32 +0000114 $properties_file_names = array();
kitlo0da4aca2010-01-13 05:08:26 +0000115 chdir($temp_unzip_dir);
kitlo2e780dc2010-01-12 17:58:32 +0000116 exec("find . -name *.properties", $properties_file_names);
117 sort($properties_file_names);
118
kitlo0da4aca2010-01-13 05:08:26 +0000119 # Parse each properties file
kitlo2e780dc2010-01-12 17:58:32 +0000120 echo "Start processing properties files in project $project_id version $version...\n";
121 foreach ($properties_file_names as $properties_file_name) {
kitlo3e175f42010-01-23 02:26:31 +0000122 # Remove "./" from beginning of properties file name
kitlo2e780dc2010-01-12 17:58:32 +0000123 $properties_file_name = substr($properties_file_name, 2);
124 $plugin_id = substr($properties_file_name, 0, strpos($properties_file_name, "/"));
125 $file_id = File::getFileID($properties_file_name, $project_id, $version);
kitlo3e175f42010-01-23 02:26:31 +0000126
127 # Match plugin exclude list
128 $match = false;
129 foreach ($patterns as $pattern) {
130 if (preg_match($pattern, $properties_file_name)) {
131 $match = true;
132 break;
kitlo2e780dc2010-01-12 17:58:32 +0000133 }
134 }
kitlo3e175f42010-01-23 02:26:31 +0000135
136 if (!$match) {
kitlob746da42010-02-12 02:40:41 +0000137 if ($file_id > 0 && $files[$file_id] != null) {
kitlo3e175f42010-01-23 02:26:31 +0000138 # Existing file
139 $file = $files[$file_id];
140 $file->is_active = 1;
141 unset($files[$file_id]);
142 } else {
143 # New file
144 $file = new File();
145 $file->project_id = $project_id;
146 $file->version = $version;
147 $file->name = $properties_file_name;
148 $file->plugin_id = $plugin_id;
149 $file->is_active = 1;
150 }
151 if (!$file->save()) {
152 echo "***ERROR: Cannot save file $file->name\n";
153 } else {
154 $file_name = $temp_unzip_dir . $properties_file_name;
155 $file->parseProperties(file_get_contents($file_name));
156 if ($debug) {
157 echo " $properties_file_name\n";
158 }
159 }
160 } else {
161 if ($debug) {
162 echo " !!! Excluding $properties_file_name\n";
163 }
164 }
165 }
kitlo2e780dc2010-01-12 17:58:32 +0000166 echo "Done processing " . sizeof($properties_file_names) . " properties files in project $project_id version $version\n\n";
167}
168
169# Deactivate the rest of the files
kitlod66aa992010-01-22 17:18:19 +0000170echo "Start deactivating inactive properties files in all projects above...\n";
kitlo2e780dc2010-01-12 17:58:32 +0000171foreach ($files as $file) {
172 $file->is_active = 0;
173 if (!$file->save()) {
174 echo "***ERROR: Cannot deactivate file $file->name\n";
175 }
176 if ($debug) {
177 echo " " . $file->name . "\n";
178 }
179}
kitlod66aa992010-01-22 17:18:19 +0000180echo "Done deactivating " . sizeof($files) . " inactive properties files in all projects above\n\n";
kitlo2e780dc2010-01-12 17:58:32 +0000181
kitlo59274fb2010-02-12 03:31:34 +0000182if (is_dir($temp_unzips_dir)) {
183 exec("rm -rf $temp_unzips_dir");
184}
185
kitlo2e780dc2010-01-12 17:58:32 +0000186if ($headless) {
187 $User = null;
188}
189
190echo "Done\n";
191?>