blob: 651f2febf2ff6486d91c7d62f652da4c830d213e [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 */
16# To-do: hard-coding the Eclipse, BIRT, & Webtools update sites for now; need to create an UI for project committers to enter their update sites
kitlo0da4aca2010-01-13 05:08:26 +000017$eclipse = array("http://download.eclipse.org/eclipse/updates/3.6milestones/S-3.6M4-200912101301", "eclipse", "3.6");
18$birt = array("http://download.eclipse.org/birt/update-site/2.6-interim", "birt", "2.6.0");
19$webtools = array("http://download.eclipse.org/webtools/updates", "webtools", "3.2");
kitlo27e80be2010-01-13 13:03:55 +000020
21# BIRT 2.6.0 & Webtools 3.2 are not defined yet, cannot test on staging server
22#$update_sites = array($eclipse, $birt, $webtools);
23$update_sites = array($eclipse);
kitlo2e780dc2010-01-12 17:58:32 +000024
25$temp_dir = "/tmp/tmp-babel/";
26$debug = TRUE;
27
28header("Content-type: text/plain");
29include("global.php");
30InitPage("");
31
32$headless = 0;
33if (!isset($User)) {
34 echo "User not defined - running headless\n";
35 $User = getGenieUser();
36 $headless = 1;
37}
38
39require(dirname(__FILE__) . "/../classes/file/file.class.php");
40global $dbh;
41
kitlo0da4aca2010-01-13 05:08:26 +000042$temp_unzips_dir = $temp_dir . "unzips/";
43if (is_dir($temp_unzips_dir)) {
44 exec("rm -rf $temp_unzips_dir");
kitlo2e780dc2010-01-12 17:58:32 +000045}
kitlo0da4aca2010-01-13 05:08:26 +000046mkdir($temp_unzips_dir, 0777, TRUE) || die("***ERROR: Cannot create working directory: $temp_unzips_dir\n");
47
48global $addon;
49$context = $addon->callHook('context');
50if ($context == "live") {
51 $rsync_host = "download.eclipse.org::eclipseMirror/";
52} else {
53 $rsync_host = "rsync.osuosl.org::eclipse/";
54}
kitlo2e780dc2010-01-12 17:58:32 +000055
56$files = array();
57$sql = "SELECT * FROM files WHERE is_active = 1";
58$rs_files = mysql_query($sql, $dbh);
59while ($myrow_files = mysql_fetch_assoc($rs_files)) {
60 $file = new File();
61 $file->project_id = $myrow_files['project_id'];
62 $file->version = $myrow_files['version'];
63 $file->name = $myrow_files['name'];
64 $file->plugin_id = $myrow_files['plugin_id'];
65 $file->file_id = $myrow_files['file_id'];
66 $files[$file->file_id] = $file;
67}
68
69foreach ($update_sites as $update_site) {
kitlo0da4aca2010-01-13 05:08:26 +000070 $site_url = $update_site[0];
kitlo2e780dc2010-01-12 17:58:32 +000071 $project_id = $update_site[1];
72 $version = $update_site[2];
kitlo0da4aca2010-01-13 05:08:26 +000073 # Sample dirs:
74 # $site_url http://download.eclipse.org/eclipse/updates/3.6milestones/S-3.6M4-200912101301
75 # $site_dir eclipse/updates/3.6milestones/S-3.6M4-200912101301/
76 # $site_plugins_dir eclipse/updates/3.6milestones/S-3.6M4-200912101301/plugins/
77 # $temp_site_dir /tmp/tmp-babel/update_sites/eclipse/3.6/
78 # $temp_unzip_dir /tmp/tmp-babel/unzips/eclipse/3.6/
79 $site_dir = substr($site_url, strpos($site_url, "/", 7) + 1) . "/";
80 $site_plugins_dir = $site_dir . "/plugins/";
81 $temp_site_dir = $temp_dir . "update_sites/" . $project_id . "/" . $version . "/";
82 $temp_unzip_dir = $temp_dir . "unzips/" . $project_id . "/" . $version . "/";
kitlo2e780dc2010-01-12 17:58:32 +000083
kitlo0da4aca2010-01-13 05:08:26 +000084 # Rsync update site
85 exec("mkdir -p $temp_site_dir; rsync -av --delete $rsync_host$site_plugins_dir $temp_site_dir");
86
87 # Make unzip dir
88 mkdir($temp_unzip_dir, 0777, TRUE);
89
90 # Unzip properties files in each jar
91 chdir($temp_site_dir);
kitlo2e780dc2010-01-12 17:58:32 +000092 foreach (glob("*.jar") as $jar_name) {
93 # Sample jar name: org.eclipse.ui.workbench_3.6.0.I20100105-1530.jar
94 #
95 # Remove plugin version from jar name:
96 # org.eclipse.ui.workbench_3.6.0.I20100105-1530.jar => org.eclipse.ui.workbench
97 $temp_str = $jar_name;
98 $temp_str = substr($temp_str, 0, strrpos($temp_str, "."));
99 $temp_str = substr($temp_str, 0, strrpos($temp_str, "."));
100 $temp_str = substr($temp_str, 0, strrpos($temp_str, "_"));
101 $plugin_id = $temp_str;
102
kitlo0da4aca2010-01-13 05:08:26 +0000103 mkdir($temp_unzip_dir . $plugin_id, 0777, TRUE);
104 chdir($temp_unzip_dir . $plugin_id);
kitlo281a6412010-01-13 13:34:57 +0000105 exec("unzip -o -q $temp_site_dir$jar_name");
106 exec("rm -rf $temp_unzip_dir$plugin_id");
kitlo2e780dc2010-01-12 17:58:32 +0000107 }
108
kitlo0da4aca2010-01-13 05:08:26 +0000109 # Collect properties file names
kitlo2e780dc2010-01-12 17:58:32 +0000110 $properties_file_names = array();
kitlo0da4aca2010-01-13 05:08:26 +0000111 chdir($temp_unzip_dir);
kitlo2e780dc2010-01-12 17:58:32 +0000112 exec("find . -name *.properties", $properties_file_names);
113 sort($properties_file_names);
114
kitlo0da4aca2010-01-13 05:08:26 +0000115 # Parse each properties file
kitlo2e780dc2010-01-12 17:58:32 +0000116 echo "Start processing properties files in project $project_id version $version...\n";
117 foreach ($properties_file_names as $properties_file_name) {
118 $properties_file_name = substr($properties_file_name, 2);
119 $plugin_id = substr($properties_file_name, 0, strpos($properties_file_name, "/"));
120 $file_id = File::getFileID($properties_file_name, $project_id, $version);
121
122 if ($files[$file_id] != null) {
123 $file = $files[$file_id];
124 $file->is_active = 1;
125 unset($files[$file_id]);
126 } else {
127 $file = new File();
128 $file->project_id = $project_id;
129 $file->version = $version;
130 $file->name = $properties_file_name;
131 $file->plugin_id = $plugin_id;
132 $file->is_active = 1;
133 }
134 if (!$file->save()) {
135 echo "***ERROR: Cannot save file $file->name\n";
136 } else {
kitlo0da4aca2010-01-13 05:08:26 +0000137 $file_name = $temp_unzip_dir . $properties_file_name;
kitlo2e780dc2010-01-12 17:58:32 +0000138 $file->parseProperties(file_get_contents($file_name));
139 if ($debug) {
140 echo " " . $file->name . "\n";
141 }
142 }
143 }
144 echo "Done processing " . sizeof($properties_file_names) . " properties files in project $project_id version $version\n\n";
145}
146
147# Deactivate the rest of the files
148foreach ($files as $file) {
149 $file->is_active = 0;
150 if (!$file->save()) {
151 echo "***ERROR: Cannot deactivate file $file->name\n";
152 }
153 if ($debug) {
154 echo " " . $file->name . "\n";
155 }
156}
157
158if ($headless) {
159 $User = null;
160}
161
162echo "Done\n";
163?>