kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 1 | <?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 | */ |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 16 | $temp_dir = "/tmp/tmp-babel/"; |
| 17 | $debug = TRUE; |
kitlo | 3efbb26 | 2010-01-13 15:18:57 +0000 | [diff] [blame] | 18 | $files = array(); |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 19 | |
| 20 | header("Content-type: text/plain"); |
| 21 | include("global.php"); |
| 22 | InitPage(""); |
| 23 | |
| 24 | $headless = 0; |
| 25 | if (!isset($User)) { |
| 26 | echo "User not defined - running headless\n"; |
| 27 | $User = getGenieUser(); |
| 28 | $headless = 1; |
| 29 | } |
| 30 | |
| 31 | require(dirname(__FILE__) . "/../classes/file/file.class.php"); |
| 32 | global $dbh; |
| 33 | |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 34 | $temp_unzips_dir = $temp_dir . "unzips/"; |
| 35 | if (is_dir($temp_unzips_dir)) { |
| 36 | exec("rm -rf $temp_unzips_dir"); |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 37 | } |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 38 | mkdir($temp_unzips_dir, 0777, TRUE) || die("***ERROR: Cannot create working directory: $temp_unzips_dir\n"); |
| 39 | |
| 40 | global $addon; |
| 41 | $context = $addon->callHook('context'); |
| 42 | if ($context == "live") { |
| 43 | $rsync_host = "download.eclipse.org::eclipseMirror/"; |
| 44 | } else { |
| 45 | $rsync_host = "rsync.osuosl.org::eclipse/"; |
| 46 | } |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 47 | |
kitlo | d66aa99 | 2010-01-22 17:18:19 +0000 | [diff] [blame^] | 48 | # 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); |
| 51 | while($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']; |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 55 | # 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 . "/"; |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 65 | |
kitlo | 3efbb26 | 2010-01-13 15:18:57 +0000 | [diff] [blame] | 66 | # 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 | |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 79 | # 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); |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 87 | 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 | |
kitlo | 20071c5 | 2010-01-13 14:10:52 +0000 | [diff] [blame] | 98 | if (!is_dir($temp_unzip_dir . $plugin_id)) { |
| 99 | mkdir($temp_unzip_dir . $plugin_id, 0777, TRUE); |
| 100 | } |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 101 | chdir($temp_unzip_dir . $plugin_id); |
kitlo | 281a641 | 2010-01-13 13:34:57 +0000 | [diff] [blame] | 102 | exec("unzip -o -q $temp_site_dir$jar_name"); |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 103 | } |
| 104 | |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 105 | # Collect properties file names |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 106 | $properties_file_names = array(); |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 107 | chdir($temp_unzip_dir); |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 108 | exec("find . -name *.properties", $properties_file_names); |
| 109 | sort($properties_file_names); |
| 110 | |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 111 | # Parse each properties file |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 112 | 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 { |
kitlo | 0da4aca | 2010-01-13 05:08:26 +0000 | [diff] [blame] | 133 | $file_name = $temp_unzip_dir . $properties_file_name; |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 134 | $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 |
kitlo | d66aa99 | 2010-01-22 17:18:19 +0000 | [diff] [blame^] | 144 | echo "Start deactivating inactive properties files in all projects above...\n"; |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 145 | foreach ($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 | } |
kitlo | d66aa99 | 2010-01-22 17:18:19 +0000 | [diff] [blame^] | 154 | echo "Done deactivating " . sizeof($files) . " inactive properties files in all projects above\n\n"; |
kitlo | 2e780dc | 2010-01-12 17:58:32 +0000 | [diff] [blame] | 155 | |
| 156 | if ($headless) { |
| 157 | $User = null; |
| 158 | } |
| 159 | |
| 160 | echo "Done\n"; |
| 161 | ?> |