blob: 5be8c008b2b8b58f5f85402de9c1f46173040598 [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);
105 exec("unzip -o -q $temp_site_dir$jar_name *.properties");
kitlo2e780dc2010-01-12 17:58:32 +0000106 }
107
kitlo0da4aca2010-01-13 05:08:26 +0000108 # Collect properties file names
kitlo2e780dc2010-01-12 17:58:32 +0000109 $properties_file_names = array();
kitlo0da4aca2010-01-13 05:08:26 +0000110 chdir($temp_unzip_dir);
kitlo2e780dc2010-01-12 17:58:32 +0000111 exec("find . -name *.properties", $properties_file_names);
112 sort($properties_file_names);
113
kitlo0da4aca2010-01-13 05:08:26 +0000114 # Parse each properties file
kitlo2e780dc2010-01-12 17:58:32 +0000115 echo "Start processing properties files in project $project_id version $version...\n";
116 foreach ($properties_file_names as $properties_file_name) {
117 $properties_file_name = substr($properties_file_name, 2);
118 $plugin_id = substr($properties_file_name, 0, strpos($properties_file_name, "/"));
119 $file_id = File::getFileID($properties_file_name, $project_id, $version);
120
121 if ($files[$file_id] != null) {
122 $file = $files[$file_id];
123 $file->is_active = 1;
124 unset($files[$file_id]);
125 } else {
126 $file = new File();
127 $file->project_id = $project_id;
128 $file->version = $version;
129 $file->name = $properties_file_name;
130 $file->plugin_id = $plugin_id;
131 $file->is_active = 1;
132 }
133 if (!$file->save()) {
134 echo "***ERROR: Cannot save file $file->name\n";
135 } else {
kitlo0da4aca2010-01-13 05:08:26 +0000136 $file_name = $temp_unzip_dir . $properties_file_name;
kitlo2e780dc2010-01-12 17:58:32 +0000137 $file->parseProperties(file_get_contents($file_name));
138 if ($debug) {
139 echo " " . $file->name . "\n";
140 }
141 }
142 }
143 echo "Done processing " . sizeof($properties_file_names) . " properties files in project $project_id version $version\n\n";
144}
145
146# Deactivate the rest of the files
147foreach ($files as $file) {
148 $file->is_active = 0;
149 if (!$file->save()) {
150 echo "***ERROR: Cannot deactivate file $file->name\n";
151 }
152 if ($debug) {
153 echo " " . $file->name . "\n";
154 }
155}
156
157if ($headless) {
158 $User = null;
159}
160
161echo "Done\n";
162?>