source: trunk/services/versions.php @ 497

Last change on this file since 497 was 497, checked in by anonymous, 10 years ago

Beginning the process of adapting codebase to foundation styles.

File size: 5.7 KB
Line 
1<?php
2/**
3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
5 * Copyright 2001-2012 Strangecode, LLC
6 *
7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
13 *
14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/**
24 * versions.php
25 */
26
27// require_once dirname(__FILE__) . '/_config.inc.php';
28
29$app->sslOn();
30$auth->requireLogin();
31
32require_once 'codebase/lib/Version.inc.php';
33require_once 'codebase/lib/Lock.inc.php';
34require_once 'codebase/lib/HTML.inc.php';
35
36/******************************************************************************
37 * CODE CONFIG
38 *****************************************************************************/
39
40// Since we're using the singleton pattern we can instantiate a Version object earlier with custom parameters.
41$version =& Version::getInstance($auth);
42$version->setParam(array(
43    // If true, makes an exact comparison of saved vs. live table schemas. If false, just checks that the saved columns are available.
44    'db_schema_strict' => false,
45));
46
47// Query arguments to retain their values between page requests.
48$app->carryQuery('record_table');
49$app->carryQuery('record_key');
50$app->carryQuery('record_val');
51$app->carryQuery('version_title');
52
53// Titles and navigation header.
54$nav->add(_("Versions"), null);
55
56/********************************************************************
57* MAIN
58********************************************************************/
59
60// Request arguments.
61$version_id = getFormData('version_id');
62$record_table = getFormData('record_table');
63$record_key = getFormData('record_key');
64$record_val = getFormData('record_val');
65
66if ('' == $version_id && ('' == $record_table || '' == $record_key || '' == $record_val)) {
67    $app->raiseMsg(_("Record not specified for versioning."), MSG_WARNING, __FILE__, __LINE__);
68    $app->logMsg('Record not specified for versioning.', LOG_WARNING, __FILE__, __LINE__);
69    $app->dieBoomerangURL();
70}
71
72if (getFormData('boomerang', false) && isset($_SERVER['HTTP_REFERER'])) {
73    // We remember which page we came from so we can go back there.
74    $app->setBoomerangURL($_SERVER['HTTP_REFERER'], 'versions');
75}
76
77// What action to take.
78switch (getFormData('op')) {
79
80case _("Cancel") :
81    $app->dieBoomerangURL('versions', false);
82    break;
83
84case 'view' :
85    $data = $version->getData($version_id);
86    $versionrecord = $version->getVerson($version_id);
87    $nav->add(sprintf(_("%s <small>Version %s (%s)</small>"), $versionrecord['version_title'], $version_id, date(sprintf('%s %s', $app->getParam('date_format'), $app->getParam('time_format')), strtotime($versionrecord['version_datetime']))));
88    $main_template = 'versions_view.ihtml';
89    break;
90
91case 'diff' :
92    $data = $version->getData($version_id);
93    $versionrecord = $version->getVerson($version_id);
94    $current = $version->getCurrent($record_table, $record_key, $record_val);
95    if (serialize($data) == serialize($current)) {
96        $app->raiseMsg(sprintf(_("Version %s is identical to the current record"), $version_id), MSG_NOTICE, __FILE__, __LINE__);
97    }
98    $nav->add(sprintf(_("%s <small>Version %s (%s)</small>"), $versionrecord['version_title'], $version_id, date(sprintf('%s %s', $app->getParam('date_format'), $app->getParam('time_format')), strtotime($versionrecord['version_datetime']))));
99    $main_template = 'versions_diff.ihtml';
100    break;
101
102case 'restore' :
103    if (!isset($lock) || !is_a($lock, 'Lock')) {
104        $lock =& Lock::getInstance($auth);
105    }
106    $lock->select($record_table, $record_key, $record_val);
107    if ($lock->isLocked() && !$lock->isMine()) {
108        $lock->dieErrorPage();
109    }
110
111    if ($v = $version->restore($version_id)) {
112        // Create version of this restored record as the "current" version.
113        $version->create($record_table, $record_key, $record_val, $v['version_title']);
114        $app->raiseMsg(sprintf(_("The record <em>%s</em> has been replaced with <em>%s</em> version <em>%s</em> from <em>%s</em>."), getFormData('version_title'), $v['version_title'], $version_id, $v['version_datetime']), MSG_SUCCESS, __FILE__, __LINE__);
115        $app->dieBoomerangURL('versions', array('break_list_cache'=>'true', false));
116    } else {
117        $app->raiseMsg(_("Version restoration failed."), MSG_ERR, __FILE__, __LINE__);
118        $app->dieURL($_SERVER['PHP_SELF']);
119    }
120    break;
121
122default :
123    $versions = $version->getList($record_table, $record_key, $record_val);
124    if (is_array($versions) && !empty($versions)) {
125        $_POST['version_title'] = $versions[0]['version_title'];
126        $nav->add(sprintf(_("%s versions of <em>%s</em>"), sizeof($versions), $versions[0]['version_title']));
127        $main_template = 'versions_list.ihtml';
128    } else {
129        $app->raiseMsg(sprintf(_("No saved versions available"), null), MSG_NOTICE, __FILE__, __LINE__);
130        $app->dieBoomerangURL('versions');
131    }
132}
133
134
135/******************************************************************************
136 * TEMPLATE INITIALIZATION
137 *****************************************************************************/
138
139include 'header.ihtml';
140include 'codebase/services/templates/' . $main_template;
141include 'footer.ihtml';
142
Note: See TracBrowser for help on using the repository browser.