1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
|
#!/usr/bin/php
<?php
/***********************************************************
Copyright (C) 2008 Hewlett-Packard Development Company, L.P.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
***********************************************************/
/**************************************************************
cp2foss
Import a file (or directory) into FOSSology for processing.
@return 0 for success, 1 for failure.
*************************************************************/
/* Have to set this or else plugins will not load. */
$GlobalReady = 1;
/* Load all code */
require_once (dirname(__FILE__) . '/../share/fossology/php/pathinclude.php');
global $WEBDIR;
$UI_CLI = 1; /* this is a command-line program */
require_once ("$WEBDIR/common/common.php");
cli_Init();
global $Plugins;
error_reporting(E_NOTICE & E_STRICT);
global $Enotification;
global $Email;
global $ME;
$Usage = "Usage: " . basename($argv[0]) . " [options] [archives]
Options:
-h = this help message
-v = enable verbose debugging
FOSSology storage options:
-f path = folder path for placing files (e.g., -f 'Fedora/ISOs/Disk 1')
You do not need to specify '/System Repository'.
All paths are under '/System Repository'.
-A = alphabet folders; organize uploads into folder a-c, d-f, etc.
-AA num = specify the number of letters per folder (default: 3); implies -A
-n name = (optional) name for the upload (default: name it after the file)
-e addr = email results to addr
-d desc = (optional) description for the update
FOSSology processing queue options:
-Q = list all available processing agents
-q = specify a comma-separated list of agents, or 'all'
NOTE: By default, no analysis agents are queued up.
-T = TEST. No database or repository updates are performed.
Test mode enables verbose mode.
FOSSology source options:
archive = file, directory, or URL to the archive.
If the archive is a URL, then it is retrieved and added.
If the archive is a file, then it is used as the source to add.
If the archive is a directory, then ALL files under it are
recursively added.
- = a single hyphen means the archive list will come from stdin.
-X path = item to exclude when archive is a directory
You can specify more than one -X. For example, to exclude
all svn and cvs directories, include the following before the
archive's directory path:
-X .svn -X .cvs
NOTES:
If you use -n, then -n must be set BEFORE each archive.
If you specify a directory, then -n and -d are ignored.
Multiple archives can be specified after each storage option.
NOTE: you may specify multiple parameters on the command-line.
For example, to load three files into two different paths:
-f path1 -d 'the first file' /tmp/file1 \\
-d 'the second file' /tmp/file2 \\
-f path2 -d 'the third file' http://server/file3
Depricated options:
-a archive = (depricated) see archive
-p path = (depricated) see -f
-R = (depricated and ignored)
-w = (depricated and ignored)
";
/* Load command-line options */
global $DB;
$Verbose = 0;
$Test = 0;
/************************************************************************/
/************************************************************************/
/************************************************************************/
/****************************************************
GetBucketFolder(): Given an upload name and the number
of letters per bucket, return the bucket folder name.
****************************************************/
function GetBucketFolder($UploadName, $BucketGroupSize) {
$Letters = "abcdefghijklmnopqrstuvwxyz";
$Numbers = "0123456789";
if (empty($UploadName)) {
return;
}
$Name = strtolower(substr($UploadName, 0, 1));
/* See if I can find the bucket */
if (empty($BucketGroupSize) || ($BucketGroupSize < 1)) {
$BucketGroupSize = 3;
}
for ($i = 0;$i < 26;$i+= $BucketGroupSize) {
$Range = substr($Letters, $i, $BucketGroupSize);
$Find = strpos($Range, $Name);
if ($Find !== false) {
if (($BucketGroupSize <= 1) || (strlen($Range) <= 1)) {
return ($Range);
}
return (substr($Range, 0, 1) . '-' . substr($Range, -1, 1));
}
}
/* Not a letter. Check for numbers */
$Find = strpos($Numbers, $Name);
if ($Find !== false) {
return ("0-9");
}
/* Not a letter. */
return ("Other");
} /* GetBucketFolder() */
/****************************************************
GetFolder(): Given a folder path, return the folder_pk.
NOTE: If any part of the folder path does not exist, thenscp cp2foss will
create it.
NOTE: This is recursive!
****************************************************/
function GetFolder($FolderPath, $Parent = NULL) {
global $DB;
global $Verbose;
global $Test;
if (empty($Parent)) {
$Parent = FolderGetTop();
}
/*/ indicates it's the root folder. Empty folder path ends recursion. */
if ($FolderPath == '/') {
return ($Parent);
}
if (empty($FolderPath)) {
return ($Parent);
}
list($Folder, $FolderPath) = split('/', $FolderPath, 2);
if (empty($Folder)) {
return (GetFolder($FolderPath, $Parent));
}
/* See if it exists */
$SQLFolder = str_replace("'", "''", $Folder);
$SQL = "SELECT * FROM folder
INNER JOIN foldercontents ON child_id = folder_pk
AND foldercontents_mode = '1'
WHERE parent_fk = '$Parent' AND folder_name='$SQLFolder';";
if ($Verbose > 1) {
print "SQL=\n$SQL\n";
}
$Results = $DB->Action($SQL);
if (count($Results) <= 0) {
/* Need to create folder */
global $Plugins;
$P = & $Plugins[plugin_find_id("folder_create") ];
if (empty($P)) {
print "FATAL: Unable to find folder_create plugin.\n";
exit(-1);
}
if ($Verbose) {
print "Folder not found: Creating $Folder\n";
}
if (!$Test) {
$P->Create($Parent, $Folder, "");
}
$Results = $DB->Action($SQL);
}
$Parent = $Results[0]['folder_pk'];
return (GetFolder($FolderPath, $Parent));
} /* GetFolder() */
/**
* process email notifciation
*
* If being run as an agent, get the user name from the previous upload
*
* @param int $UploadPk the upload pk
* @return NULL on success, String on failure.
*
*/
function ProcEnote($UploadPk) {
global $Email;
global $DB;
global $ME;
/* get the user name from the previous upload */
$previous = $UploadPk-1;
$Sql = "SELECT upload_pk,upload_userid,job_upload_fk,job_user_fk FROM upload,job WHERE " .
"job_upload_fk=$previous and upload_pk=$previous order by upload_pk desc;";
$Users = $DB->Action($Sql);
$UserPk = $Users[0]['job_user_fk'];
$UserId = $Users[0]['upload_userid'];
$Sql = "SELECT user_pk, user_name, user_email, email_notify FROM users WHERE " .
"user_pk=$UserPk; ";
$Uname= $DB->Action($Sql);
$UserName = $Uname[0]['user_name'];
$UserEmail = $Uname[0]['user_email'];
/*
* If called as agent, current upload user name will be fossy with a upload_userid of NULL.
* Get the information to check that condition
*/
$Sql = "SELECT upload_pk,upload_userid,job_upload_fk,job_user_fk FROM upload,job WHERE " .
"job_upload_fk=$UploadPk and upload_pk=$UploadPk order by upload_pk desc;";
$Users = $DB->Action($Sql);
$UserPk = $Users[0]['job_user_fk'];
$UserId = $Users[0]['upload_userid'];
/* are we being run as fossy?, either as agent or from command line */
if($UserId === NULL && $ME == 'fossy') {
/*
* When run as agent or fossy, pass in the UserEmail and UserName. This
* ensures the email address is correct, the UserName is used for the
* salutation.
*/
$sched = scheduleEmailNotification($UploadPk,$UserEmail,$UserName);
}
else {
/* run as cli, use the email passed in and $ME */
$sched = scheduleEmailNotification($UploadPk,$Email,$ME);
print " Scheduling email notification for $Email\n";
}
if ($sched !== NULL) {
return("Warning: Queueing email failed:\n$sched\n");
}
return(NULL);
} // ProcEnote
/****************************************************
UploadOne(): Given one object (file or URL), upload it.
This is a function because it is can also be recursive!
****************************************************/
function UploadOne($FolderPath, $UploadArchive, $UploadName, $UploadDescription, $TarSource = NULL) {
global $Verbose;
global $Test;
global $QueueList;
global $Enotification;
global $Email;
/* $Mode determines where it came from */
if (preg_match("@^[a-zA-Z0-9_]+://@", $UploadArchive)) {
$Mode = 1 << 2; /* Looks like a URL */
}
else if (is_dir($UploadArchive)) {
/* It's a directory, tar it! */
global $LIBEXECDIR;
global $TarExcludeList;
/*
* User reppath to get a path in the repository for temp storage. Only
* use the part up to repository, as the path returned may not exist.
*/
$FilePart = "cp2foss-" . uniqid() . ".tar";
exec("$LIBEXECDIR/reppath files $FilePart", $Path);
$FilePath = $Path[0];
$match = preg_match('/^(.*?repository)/', $FilePath, $matches);
$Filename = $matches[1] . '/' . $FilePart;
if (empty($UploadName)) {
$UploadName = basename($UploadArchive);
}
if ($Verbose > 1) {
$TarArg = "-cvf";
} else {
$TarArg = "-cf";
}
$Cmd = "tar $TarArg '$Filename' $TarExcludeList '$UploadArchive'";
if ($Verbose) {
print "CMD=$Cmd\n";
}
system($Cmd);
UploadOne($FolderPath, $Filename, $UploadName, $UploadDescription, $UploadArchive);
unlink($Filename);
/* email notification will be scheduled below, above we just handed UploadOne
* a tar'ed up file.
*/
return;
}
else if (file_exists($UploadArchive)) {
$Mode = 1 << 4; /* Looks like a filesystem */
}
else {
/* Don't know what it is... */
print "FATAL: '$UploadArchive' does not exist.\n";
exit(1);
}
if (empty($UploadName)) {
return;
}
/* Get the folder's primary key */
global $OptionA; /* Should it use bucket names? */
if ($OptionA) {
global $bucket_size;
$FolderPath.= "/" . GetBucketFolder($UploadName, $bucket_size);
}
$FolderPk = GetFolder($FolderPath);
if ($FolderPk == 1) {
print " Uploading to folder: Software Repository\n";
}
else {
print " Uploading to folder: '$FolderPath'\n";
}
print " Uploading as '$UploadName'\n";
if (!empty($UploadDescription)) {
print " Upload description: '$UploadDescription'\n";
}
/* Create the upload for the file */
if ($Verbose > 1) {
print "JobAddUpload($UploadName,$UploadArchive,$UploadDescription,$Mode,$FolderPk);\n";
}
if (!$Test) {
$Src = $UploadArchive;
if (!empty($TarSource)) {
$Src = $TarSource;
}
$UploadPk = JobAddUpload($UploadName, $Src, $UploadDescription, $Mode, $FolderPk);
}
/* Tell wget_agent to actually grab the upload */
global $AGENTDIR;
$Cmd = "$AGENTDIR/wget_agent -k '$UploadPk' '$UploadArchive'";
if ($Verbose) {
print "CMD=$Cmd\n";
}
if (!$Test) {
system($Cmd);
}
/* Schedule the unpack */
$Cmd = "fossjobs -U '$UploadPk' -A agent_unpack";
if ($Verbose) {
print "CMD=$Cmd\n";
}
if (!$Test) {
system($Cmd);
}
if (!empty($QueueList)) {
switch ($QueueList) {
case 'agent_unpack':
$Cmd = "";
break; /* already scheduled */
case 'ALL':
case 'all':
$Cmd = "fossjobs -U '$UploadPk'";
break;
default:
$Cmd = "fossjobs -U '$UploadPk' -A '$QueueList'";
break;
}
if ($Verbose) {
print "CMD=$Cmd\n";
}
if (!$Test) {
system($Cmd);
}
/*
* this is gross: by the time you get here, the uploadPk is one more than the
* uploadPk reported to the user. That's because the first upload pk is for
* the fosscp_agent, then the second (created in cp2foss) is for the rest
* of the processing. Unless being run as a cli.... See ProcEnote.
*/
if($Enotification) {
$res = ProcEnote($UploadPk);
if(!is_null($res)) {
print $res;
}
}
}
else {
/* No other agents other than unpack scheduled, attach to unpack*/
if($Enotification) {
$res = ProcEnote($UploadPk);
if(!is_null($res)) {
print $res;
}
}
}
} /* UploadOne() */
/************************************************************************/
/************************************************************************/
/************************************************************************/
/* Process each parameter */
$FolderPath = "/";
$UploadDescription = "";
$UploadName = "";
$QueueList = "";
$TarExcludeList = "";
$bucket_size = 3;
$ME = exec('id -un',$toss,$rtn);
for ($i = 1;$i < $argc;$i++) {
switch ($argv[$i]) {
case '-A': /* use alphabet buckets */
$OptionA = true;
break;
case '-AA': /* use alphabet buckets */
$OptionA = true;
$i++;
$bucket_size = intval($argv[$i]);
if ($bucket_size < 1) {
$bucket_size = 1;
}
break;
case '-f': /* folder path */
case '-p': /* depricated 'path' to folder */
$i++;
$FolderPath = $argv[$i];
/* idiot check for absolute paths */
//print " Before Idiot Checks: '$FolderPath'\n";
/* remove starting and ending / */
$FolderPath = preg_replace('@^/*@', "", $FolderPath);
$FolderPath = preg_replace('@/*$@', "", $FolderPath);
/* Note: the pattern below should probably be generalized to remove everything
* up to and including the 1st /, This pattern works in what I've
* tested: @^.*\/@ ( I had to escape the / so the comment works!)
*/
$FolderPath = preg_replace("@^S.*? Repository@", "", $FolderPath);
$FolderPath = preg_replace('@//*@', "/", $FolderPath);
$FolderPath = '/' . $FolderPath;
//print " AFTER Idiot Checks: '$FolderPath'\n";
break;
case '-R': /* obsolete: recurse directories */
case '-w': /* obsolete: URL switch to use wget */
break;
case '-d': /* specify upload description */
$i++;
$UploadDescription = $argv[$i];
break;
case '-e': /* email notification wanted */
$i++;
$Email = $argv[$i];
// Make sure email looks valid
$Check = preg_replace("/[^a-zA-Z0-9@_.+-]/", "", $Email);
if ($Check != $Email) {
print "Invalid email address. $Email\n";
print $Usage;
exit(1);
}
$Enotification = TRUE;
if($Enotification) {
}
break;
case '-n': /* specify upload name */
$i++;
$UploadName = $argv[$i];
break;
case '-Q':
system("fossjobs -a");
return (0);
case '-q':
$i++;
$QueueList = $argv[$i];
break;
case '-T': /* Test mode */
$Test = 1;
if (!$Verbose) {
$Verbose++;
}
break;
case '-v':
$Verbose++;
break;
case '-X':
if (!empty($TarExcludeList)) {
$TarExcludeList.= " ";
}
$i++;
$TarExcludeList.= "--exclude '" . $argv[$i] . "'";
break;
case '-h':
case '-?':
print $Usage . "\n";
return (0);
case '-a': /* it's an archive! */
/* ignore -a since the next name is a file. */
break;
case '-': /* it's an archive list from stdin! */
$Fin = fopen("php://stdin", "r");
while (!feof($Fin)) {
$UploadArchive = trim(fgets($Fin));
if (strlen($UploadArchive) > 0) {
print "Loading $UploadArchive\n";
if (empty($UploadName)) {
$UploadName = basename($UploadArchive);
}
//print " CP2: Calling Upload1 from stdin\n";
UploadOne($FolderPath, $UploadArchive, $UploadName, $UploadDescription);
/* prepare for next parameter */
$UploadName = "";
}
}
fclose($Fin);
break;
default:
if (substr($argv[$i], 0, 1) == '-') {
print "Unknown parameter: '" . $argv[$i] . "'\n";
print $Usage . "\n";
exit(1);
}
/* No break! No hyphen means it is a file! */
$UploadArchive = $argv[$i];
print "Loading $UploadArchive\n";
if (empty($UploadName)) {
$UploadName = basename($UploadArchive);
}
//print " CAlling UploadOne in 'main': '$FolderPath'\n";
UploadOne($FolderPath, $UploadArchive, $UploadName, $UploadDescription);
/* prepare for next parameter */
$UploadName = "";
break;
} /* switch */
} /* for each parameter */
return (0);
?>
|