From 0cd289c48bbc48a031bed875d38745057b31eeb4 Mon Sep 17 00:00:00 2001 From: paul Date: Mon, 5 Mar 2007 13:54:55 +0000 Subject: [PATCH] In BasicStor.php, converted many functions to STATIC because thats what they were. This in turn converted many other functions to STATIC in other files. Commented out functions that were not in use. Removed code that was already commented out. The Prefs class no longer requires the greenbox in its constructor. Changed the poorly named "upload2Hub" to "uploadToHub". Changed "uploadFileToHub" to "uploadFileAsync" (partly because the idea of a Hub no longer exists). Added public/private keywords to functions in Transport.php. Converted some comments mentioning LS to CC. DataEngine class no longer needs a Greenbox object to initialize it. Expanded LocStor::searchMetadata() to handle remote searches as well as local searches. --- .../src/modules/archiveServer/var/Archive.php | 16 +- .../modules/htmlUI/var/html/ui_browser.php | 4 +- .../modules/htmlUI/var/html/ui_handler.php | 4 +- .../var/templates/library/actionhandler.tpl | 12 +- .../templates/scratchpad/actionhandler.tpl | 18 +- .../var/templates/script/contextmenu.js.tpl | 12 +- .../modules/htmlUI/var/ui_handler.class.php | 2 +- .../modules/htmlUI/var/ui_search.class.php | 15 +- .../modules/htmlUI/var/ui_transfers.class.php | 8 +- .../src/modules/storageAdmin/var/backup.php | 4 +- .../storageAdmin/var/campcaster-import.php | 4 +- .../src/modules/storageAdmin/var/restore.php | 2 +- .../storageClient/src/WebStorageClient.cxx | 596 +++++++++--------- .../modules/storageServer/var/BasicStor.php | 154 ++--- .../modules/storageServer/var/DataEngine.php | 11 +- .../modules/storageServer/var/GreenBox.php | 313 +++------ .../src/modules/storageServer/var/LocStor.php | 146 +++-- .../modules/storageServer/var/Playlist.php | 6 +- .../src/modules/storageServer/var/Prefs.php | 8 +- .../modules/storageServer/var/Renderer.php | 4 +- .../modules/storageServer/var/StoredFile.php | 7 - .../modules/storageServer/var/Transport.php | 274 +++----- .../storageServer/var/TransportRecord.php | 2 +- .../var/cron/transportCronJob.php | 5 +- .../storageServer/var/tests/transTest.php | 4 +- .../storageServer/var/xmlrpc/XR_LocStor.php | 56 +- .../storageServer/var/xmlrpc/simpleGet.php | 4 +- .../storageServer/var/xmlrpc/xrLocStor.php | 87 +-- .../storageServer/var/xmlrpc/xr_cli_test.php | 4 +- .../storageServer/var/xmlrpc/xr_web_test.php | 4 +- 30 files changed, 766 insertions(+), 1020 deletions(-) diff --git a/campcaster/src/modules/archiveServer/var/Archive.php b/campcaster/src/modules/archiveServer/var/Archive.php index f18b16ef1..1bac8e1e6 100644 --- a/campcaster/src/modules/archiveServer/var/Archive.php +++ b/campcaster/src/modules/archiveServer/var/Archive.php @@ -34,7 +34,7 @@ class Archive extends XR_LocStor { if (PEAR::isError($owner)) { return $owner; } - $res = $this->bsOpenPut($chsum, NULL, $owner); + $res = BasicStor::bsOpenPut($chsum, NULL, $owner); if (PEAR::isError($res)) { return $res; } @@ -52,7 +52,7 @@ class Archive extends XR_LocStor { */ function uploadCheck($token) { - return $this->bsCheckPut($token); + return BasicStor::bsCheckPut($token); } @@ -69,7 +69,7 @@ class Archive extends XR_LocStor { */ function uploadClose($token, $trtype, $pars=array()) { - $res = $this->bsClosePut($token); + $res = BasicStor::bsClosePut($token); if (PEAR::isError($res)) { return $res; } @@ -77,7 +77,7 @@ class Archive extends XR_LocStor { switch ($trtype) { case "audioclip": $mdtoken = $pars['mdpdtoken']; - $res = $this->bsClosePut($mdtoken); + $res = BasicStor::bsClosePut($mdtoken); if (PEAR::isError($res)) { return $res; } @@ -128,7 +128,7 @@ class Archive extends XR_LocStor { case "playlistPkg": $chsum = md5_file($fname); // importPlaylistOpen: - $res = $this->bsOpenPut($chsum, NULL, $owner); + $res = BasicStor::bsOpenPut($chsum, NULL, $owner); if (PEAR::isError($res)) { return $res; } @@ -225,14 +225,14 @@ class Archive extends XR_LocStor { $res = $this->accessPlaylist($sessid, $gunid); break; case "playlistPkg": - $res = $this->bsExportPlaylistOpen($gunid); + $res = BasicStor::bsExportPlaylistOpen($gunid); if (PEAR::isError($res)) { return $res; } $tmpn = tempnam($CC_CONFIG['transDir'], 'plExport_'); $plfpath = "$tmpn.lspl"; copy($res['fname'], $plfpath); - $res = $this->bsExportPlaylistClose($res['token']); + $res = BasicStor::bsExportPlaylistClose($res['token']); if (PEAR::isError($res)) { return $res; } @@ -268,7 +268,7 @@ class Archive extends XR_LocStor { case "metadata": case "playlist": case "playlistPkg": - $title = $this->bsGetTitle(NULL, $gunid); + $title = BasicStor::bsGetTitle(NULL, $gunid); break; case "searchjob": $title = 'searchjob'; diff --git a/campcaster/src/modules/htmlUI/var/html/ui_browser.php b/campcaster/src/modules/htmlUI/var/html/ui_browser.php index 876fe6c42..eae7e8f5e 100644 --- a/campcaster/src/modules/htmlUI/var/html/ui_browser.php +++ b/campcaster/src/modules/htmlUI/var/html/ui_browser.php @@ -193,8 +193,8 @@ if (isset($_REQUEST['popup']) && is_array($_REQUEST['popup'])){ $uiBrowser->EXCHANGE->createBackupDownload(); break; - case 'TR.confirmUpload2Hub': - $uiBrowser->TRANSFERS->upload2Hub($_REQUEST['id']); + case 'TR.confirmUploadToHub': + $uiBrowser->TRANSFERS->uploadToHub($_REQUEST['id']); $Smarty->display('popup/TR.confirmTransfer.tpl'); break; diff --git a/campcaster/src/modules/htmlUI/var/html/ui_handler.php b/campcaster/src/modules/htmlUI/var/html/ui_handler.php index 5c8e0af62..5b2c25470 100644 --- a/campcaster/src/modules/htmlUI/var/html/ui_handler.php +++ b/campcaster/src/modules/htmlUI/var/html/ui_handler.php @@ -202,8 +202,10 @@ switch ($_REQUEST['act']) { break; case "HUBSEARCH.newSearch": - $uiHandler->HUBSEARCH->newSearch($_REQUEST); + $uiHandler->SEARCH->newSearch($_REQUEST, "remote"); break; +// $uiHandler->HUBSEARCH->newSearch($_REQUEST); +// break; case "HUBSEARCH.reorder": $uiHandler->HUBSEARCH->reorder($_REQUEST['by']); diff --git a/campcaster/src/modules/htmlUI/var/templates/library/actionhandler.tpl b/campcaster/src/modules/htmlUI/var/templates/library/actionhandler.tpl index 48be54848..bcf4d8ab8 100644 --- a/campcaster/src/modules/htmlUI/var/templates/library/actionhandler.tpl +++ b/campcaster/src/modules/htmlUI/var/templates/library/actionhandler.tpl @@ -1,28 +1,28 @@ onClick="return contextmenu('{$i.id}' , 'SP.addItem' - + {if $i.type|lower == 'audioclip'} , 'listen', '{$i.gunid}' - + {if $_PL_activeId} , 'PL.addItem' {else} , 'PL.create' {/if} - + , 'edit' , 'delete' {/if} {if $i.type|lower == 'webstream'} , 'listen', '{$i.gunid}' - + {if $_PL_activeId} , 'PL.addStream' {else} , 'PL.create' {/if} - + , 'edit' , 'delete' {/if} @@ -45,6 +45,6 @@ onClick="return contextmenu('{$i.id}' {/if} {/if} - , 'TR.upload2Hub' + , 'TR.uploadToHub' )" diff --git a/campcaster/src/modules/htmlUI/var/templates/scratchpad/actionhandler.tpl b/campcaster/src/modules/htmlUI/var/templates/scratchpad/actionhandler.tpl index e350c03c7..a92cdcbef 100644 --- a/campcaster/src/modules/htmlUI/var/templates/scratchpad/actionhandler.tpl +++ b/campcaster/src/modules/htmlUI/var/templates/scratchpad/actionhandler.tpl @@ -1,32 +1,32 @@ onClick="return contextmenu('{$i.id}' , 'SP.removeItem' - + {if $i.type|lower == 'audioclip'} , 'listen', '{$i.gunid}' - + {if $_PL_activeId} , 'PL.addItem' {else} - , 'PL.create' + , 'PL.create' {/if} - + , 'edit' , 'delete' {/if} {if $i.type|lower == 'webstream'} , 'listen', '{$i.gunid}' - + {if $_PL_activeId} {if $i.duration == '00:00:00.000000'} , 'PL.addStream' {else} , 'PL.addItem' - {/if} + {/if} {else} , 'PL.create' {/if} - + , 'edit' , 'delete' {/if} @@ -49,6 +49,6 @@ onClick="return contextmenu('{$i.id}' , 'PL.export' {/if} {/if} - - , 'TR.upload2Hub' + + , 'TR.uploadToHub' )" \ No newline at end of file diff --git a/campcaster/src/modules/htmlUI/var/templates/script/contextmenu.js.tpl b/campcaster/src/modules/htmlUI/var/templates/script/contextmenu.js.tpl index 0268e5d67..12498956a 100644 --- a/campcaster/src/modules/htmlUI/var/templates/script/contextmenu.js.tpl +++ b/campcaster/src/modules/htmlUI/var/templates/script/contextmenu.js.tpl @@ -1,6 +1,6 @@ {literal}