2012-04-23 17:54:49 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ownCloud - History page of the Versions App
|
|
|
|
|
*
|
|
|
|
|
* @author Frank Karlitschek
|
2012-05-26 13:14:24 -04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2012-08-29 02:42:49 -04:00
|
|
|
*
|
2012-04-23 17:54:49 -04:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
2012-08-29 02:42:49 -04:00
|
|
|
* License as published by the Free Software Foundation; either
|
2012-04-23 17:54:49 -04:00
|
|
|
* version 3 of the License, or any later version.
|
2012-08-29 02:42:49 -04:00
|
|
|
*
|
2012-04-23 17:54:49 -04:00
|
|
|
* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
2012-08-29 02:42:49 -04:00
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-04-23 17:54:49 -04:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2012-08-29 02:42:49 -04:00
|
|
|
*
|
2012-04-23 17:54:49 -04:00
|
|
|
*/
|
|
|
|
|
|
2012-05-01 16:59:38 -04:00
|
|
|
OCP\User::checkLoggedIn( );
|
2012-11-04 05:10:46 -05:00
|
|
|
OCP\Util::addStyle('files_versions', 'versions');
|
2012-05-06 17:00:36 -04:00
|
|
|
$tmpl = new OCP\Template( 'files_versions', 'history', 'user' );
|
2013-02-07 10:17:54 -05:00
|
|
|
$l = OC_L10N::get('files_versions');
|
2012-04-23 17:54:49 -04:00
|
|
|
|
2012-04-25 08:51:08 -04:00
|
|
|
if ( isset( $_GET['path'] ) ) {
|
2012-04-23 17:54:49 -04:00
|
|
|
|
|
|
|
|
$path = $_GET['path'];
|
2012-04-27 08:19:16 -04:00
|
|
|
$tmpl->assign( 'path', $path );
|
2012-09-19 14:59:57 -04:00
|
|
|
$versions = new OCA\Files_Versions\Storage();
|
2012-04-23 17:54:49 -04:00
|
|
|
|
|
|
|
|
// roll back to old version if button clicked
|
2012-12-14 17:04:42 -05:00
|
|
|
if( isset( $_GET['revert'] ) ) {
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2012-08-29 14:34:44 -04:00
|
|
|
if( $versions->rollback( $path, $_GET['revert'] ) ) {
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2013-02-07 10:17:54 -05:00
|
|
|
$tmpl->assign( 'outcome_stat', $l->t('success') );
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2013-02-07 10:17:54 -05:00
|
|
|
$message = $l->t('File %s was reverted to version %s',
|
|
|
|
|
array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) );
|
|
|
|
|
|
|
|
|
|
$tmpl->assign( 'outcome_msg', $message);
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2012-04-27 08:19:16 -04:00
|
|
|
} else {
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2013-02-07 10:17:54 -05:00
|
|
|
$tmpl->assign( 'outcome_stat', $l->t('failure') );
|
|
|
|
|
|
|
|
|
|
$message = $l->t('File %s could not be reverted to version %s',
|
|
|
|
|
array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) );
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2013-02-07 10:17:54 -05:00
|
|
|
$tmpl->assign( 'outcome_msg', $message);
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2012-04-26 13:45:17 -04:00
|
|
|
}
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2012-04-23 17:54:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// show the history only if there is something to show
|
2013-01-11 08:23:28 -05:00
|
|
|
$count = 999; //show the newest revisions
|
2013-03-01 07:55:10 -05:00
|
|
|
list ($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($path);
|
|
|
|
|
if( ($versions = OCA\Files_Versions\Storage::getVersions($uid, $filename, $count)) ) {
|
2012-04-23 17:54:49 -04:00
|
|
|
|
2012-04-27 08:19:16 -04:00
|
|
|
$tmpl->assign( 'versions', array_reverse( $versions ) );
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2012-04-23 17:54:49 -04:00
|
|
|
}else{
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2013-02-07 10:17:54 -05:00
|
|
|
$tmpl->assign( 'message', $l->t('No old versions available') );
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2012-04-23 17:54:49 -04:00
|
|
|
}
|
|
|
|
|
}else{
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2013-02-07 10:17:54 -05:00
|
|
|
$tmpl->assign( 'message', $l->t('No path specified') );
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2012-04-23 17:54:49 -04:00
|
|
|
}
|
|
|
|
|
|
2012-04-27 08:19:16 -04:00
|
|
|
$tmpl->printPage( );
|