Example #1
0
<?php

OCP\JSON::checkAppEnabled('files_versions');
OCP\JSON::callCheck();
$userDirectory = "/" . OCP\USER::getUser() . "/files";
$file = $_GET['file'];
$revision = (int) $_GET['revision'];
if (OCA_Versions\Storage::isversioned($file)) {
    if (OCA_Versions\Storage::rollback($file, $revision)) {
        OCP\JSON::success(array("data" => array("revision" => $revision, "file" => $file)));
    } else {
        OCP\JSON::error(array("data" => array("message" => "Could not revert:" . $file)));
    }
}
Example #2
0
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 *
 */
OCP\User::checkLoggedIn();
OCP\Util::addStyle('files_versions', 'versions');
$tmpl = new OCP\Template('files_versions', 'history', 'user');
if (isset($_GET['path'])) {
    $path = $_GET['path'];
    $path = $path;
    $tmpl->assign('path', $path);
    $versions = new OCA_Versions\Storage();
    // roll back to old version if button clicked
    if (isset($_GET['revert'])) {
        if ($versions->rollback($path, $_GET['revert'])) {
            $tmpl->assign('outcome_stat', 'success');
            $tmpl->assign('outcome_msg', "File {$_GET['path']} was reverted to version " . OCP\Util::formatDate(doubleval($_GET['revert'])));
        } else {
            $tmpl->assign('outcome_stat', 'failure');
            $tmpl->assign('outcome_msg', "File {$_GET['path']} could not be reverted to version " . OCP\Util::formatDate(doubleval($_GET['revert'])));
        }
    }
    // show the history only if there is something to show
    if (OCA_Versions\Storage::isversioned($path)) {
        $count = 999;
        //show the newest revisions
        $versions = OCA_Versions\Storage::getVersions($path, $count);
        $tmpl->assign('versions', array_reverse($versions));
    } else {
        $tmpl->assign('message', 'No old versions available');