2016-06-03 07:45:17 +00:00
< ? php
register_module ([
" name " => " Page History " ,
2018-07-03 10:54:54 +00:00
" version " => " 0.4 " ,
2016-06-03 07:45:17 +00:00
" author " => " Starbeamrainbowlabs " ,
2016-06-03 08:16:16 +00:00
" description " => " Adds the ability to keep unlimited page history, limited only by your disk space. Note that this doesn't store file history (yet). Currently depends on feature-recent-changes for rendering of the history page. " ,
2016-06-03 07:45:17 +00:00
" id " => " feature-history " ,
" code " => function () {
2016-06-12 20:15:43 +00:00
/**
2018-02-14 22:19:11 +00:00
* @ api { get } ? action = history & page = { pageName }[ & format = { format }] Get a list of revisions for a page
2016-06-12 20:15:43 +00:00
* @ apiName History
* @ apiGroup Page
* @ apiPermission Anonymous
*
2018-07-02 22:44:10 +00:00
* @ apiUse PageParameter
2017-10-25 21:45:15 +00:00
* @ apiParam { string } format The format to return the list of pages in . available values : html , json , text . Default : html
2016-06-12 20:15:43 +00:00
*/
2016-06-03 07:45:17 +00:00
/*
* ██ ██ ██ ███████ ████████ ██████ ██████ ██ ██
* ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
* ███████ ██ ███████ ██ ██ ██ ██████ ████
* ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
* ██ ██ ██ ███████ ██ ██████ ██ ██ ██
*/
add_action ( " history " , function () {
2016-06-03 08:16:16 +00:00
global $settings , $env , $pageindex ;
2016-06-03 07:45:17 +00:00
2017-10-14 21:48:58 +00:00
$supported_formats = [ " html " , " json " , " text " ];
$format = $_GET [ " format " ] ? ? " html " ;
2016-06-03 08:16:16 +00:00
2017-10-14 21:48:58 +00:00
switch ( $format ) {
case " html " :
$content = " <h1>History for $env->page </h1> \n " ;
if ( ! empty ( $pageindex -> { $env -> page } -> history ))
{
$content .= " \t \t <ul class='page-list'> \n " ;
foreach ( array_reverse ( $pageindex -> { $env -> page } -> history ) as $revisionData )
{
2018-07-02 22:44:10 +00:00
// Only display edits & reverts for now
2018-07-03 10:54:54 +00:00
if ( ! in_array ( $revisionData -> type , [ " edit " , " revert " ]))
continue ;
2017-10-14 21:48:58 +00:00
// The number (and the sign) of the size difference to display
$size_display = ( $revisionData -> sizediff > 0 ? " + " : " " ) . $revisionData -> sizediff ;
$size_display_class = $revisionData -> sizediff > 0 ? " larger " : ( $revisionData -> sizediff < 0 ? " smaller " : " nochange " );
if ( $revisionData -> sizediff > 500 or $revisionData -> sizediff < - 500 )
$size_display_class .= " significant " ;
$size_title_display = human_filesize ( $revisionData -> newsize - $revisionData -> sizediff ) . " -> " . human_filesize ( $revisionData -> newsize );
2018-07-03 10:54:54 +00:00
$content .= " \t \t \t <li> " ;
2018-07-02 22:44:10 +00:00
$content .= " <a href='?page= " . rawurlencode ( $env -> page ) . " &revision= $revisionData->rid '># $revisionData->rid </a> " . render_editor ( page_renderer :: render_username ( $revisionData -> editor )) . " " . render_timestamp ( $revisionData -> timestamp ) . " <span class='cursor-query $size_display_class ' title=' $size_title_display '>( $size_display )</span> " ;
if ( $env -> is_logged_in || ( $settings -> history_revert_require_moderator && $env -> is_admin && $env -> is_logged_in ))
$content .= " <small>(<a class='revert-button' href='?action=history-revert&page= " . rawurlencode ( $env -> page ) . " &revision= $revisionData->rid '>restore this revision</a>)</small> " ;
2018-07-03 10:54:54 +00:00
$content .= " </li> \n " ;
2017-10-14 21:48:58 +00:00
}
2018-07-03 10:54:54 +00:00
$content .= " \t \t </ul> " ;
2017-10-14 21:48:58 +00:00
}
else
{
$content .= " <p style='text-align: center;'><em>(None yet! Try editing this page and then coming back here.)</em></p> \n " ;
}
exit ( page_renderer :: render_main ( " $env->page - History - $settings->sitename " , $content ));
case " json " :
$page_history = $pageindex -> { $env -> page } -> history ? ? [];
2016-06-03 08:16:16 +00:00
2017-10-14 21:48:58 +00:00
foreach ( $page_history as & $history_entry ) {
unset ( $history_entry -> filename );
}
header ( " content-type: application/json " );
exit ( json_encode ( $page_history , JSON_PRETTY_PRINT ));
case " csv " :
$page_history = $pageindex -> { $env -> page } -> history ? ? [];
2016-06-03 08:16:16 +00:00
2017-10-14 21:48:58 +00:00
header ( " content-type: text/csv " );
echo ( " revision_id,timestamp,type,editor,newsize,sizediff \n " );
foreach ( $page_history as $hentry ) {
echo ( " $hentry->rid , $hentry->timestamp , $hentry->type , $hentry->editor , $hentry->newsize , $hentry->sizediff\n " );
}
exit ();
default :
http_response_code ( 400 );
exit ( page_renderer :: render_main ( " Format Error - $env->page - History - $settings->sitename " , " <p>The format <code> " . htmlentities ( $format ) . " </code> isn't currently supported. Supported formats: html, json, csv " ));
2016-06-03 08:16:16 +00:00
}
2017-10-14 21:48:58 +00:00
2016-06-03 07:45:17 +00:00
});
2018-07-02 22:44:10 +00:00
/**
* @ api { get } ? action = history - revert & page = { pageName } & revision = { rid } Revert a page to a previous version
* @ apiName HistoryRevert
* @ apiGroup Editing
* @ apiPermission User
* @ apiUse PageParameter
* @ apiUse UserNotLoggedInError
* @ apiUse UserNotModeratorError
*
* @ apiParam { string } revision The page revision number to revert to .
*/
/*
* ██ ██ ██ ███████ ████████ ██████ ██████ ██ ██
* ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
* ███████ ██ ███████ ██ ██ ██ ██████ ████ █████
* ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
* ██ ██ ██ ███████ ██ ██████ ██ ██ ██
*
* ██████ ███████ ██ ██ ███████ ██████ ████████
* ██ ██ ██ ██ ██ ██ ██ ██ ██
* ██████ █████ ██ ██ █████ ██████ ██
* ██ ██ ██ ██ ██ ██ ██ ██ ██
* ██ ██ ███████ ████ ███████ ██ ██ ██
*/
add_action ( " history-revert " , function () {
global $env , $settings , $pageindex ;
if (( ! $env -> is_admin && $settings -> history_revert_require_moderator ) ||
2018-07-03 10:57:53 +00:00
! $env -> is_logged_in ) {
2018-07-02 22:44:10 +00:00
http_response_code ( 401 );
2018-07-03 10:57:53 +00:00
exit ( page_renderer :: render_main ( " Unauthorised - $settings->sitename " , " <p>You can't revert pages to a previous revision because " . ( $settings -> history_revert_require_moderator && $env -> is_logged_in ? " you aren't logged in as a moderator. You can try <a href='?action=logout'>logging out</a> and then " : " you aren't logged in. You can try " ) . " <a href='?action=login&returnto= " . rawurlencode ( " ?action=history-revert&revision= { $env -> history -> revision_number } &page= " . rawurlencode ( $env -> page )) . " '>logging in</a>.</p> " ));
2018-07-02 22:44:10 +00:00
}
$current_revision_filepath = " $env->storage_prefix / { $pageindex -> { $env -> page } ->filename} " ;
// Figure out what we're saving
$newsource = file_get_contents ( $env -> page_filename ); // The old revision content - the Pepperminty Wiki core sorts this out for us
$oldsource = file_get_contents ( $current_revision_filepath ); // The current revision's content
// Save the old content over the current content
file_put_contents ( $current_revision_filepath , $newsource );
// NOTE: We don't run the save preprocessors here because they are run when a page is edited - reversion is special and requires different treatment.
// FUTURE: We may want ot refactor the save preprocessor system ot take a single object instead - then we can add as many params as we like and we could execute the save preprocessors as normal :P
// Add the old content as a new revision
$result = history_add_revision (
$pageindex -> { $env -> page },
$newsource ,
$oldsource ,
true , // Yep, go ahead and save the page index
" revert " // It's a revert, not an edit
);
// Update the redirect metadata, if the redirect module is installed
if ( module_exists ( " feature-redirect " ))
update_redirect_metadata ( $pageindex -> { $env -> page }, $newsource );
// Add an entry to the recent changes log, if the module exists
if ( $result !== false && module_exists ( " feature-recent-changes " ))
add_recent_change ([
" type " => " revert " ,
" timestamp " => time (),
" page " => $env -> page ,
" user " => $env -> user ,
" newsize " => strlen ( $newsource ),
" sizediff " => strlen ( $newsource ) - strlen ( $oldsource )
]);
if ( $result === false ) {
http_response_code ( 503 );
exit ( page_renderer :: render_main ( " Server Error - Revert - $settings->sitename " , " <p>A server error occurred when $settings->sitename tried to save the reversion of <code> " . htmlentities ( $env -> page ) . " </code>. Please contact $settings->sitename 's administrator $settings->admindetails_name , whose email address can be found at the bottom of every page (including this one).</p> " ));
}
http_response_code ( 201 );
exit ( page_renderer :: render_main ( " Reverting " . htmlentities ( $env -> page ) . " - $settings->sitename " , " <p> " . htmlentities ( $env -> page ) . " has been reverted back to revision { $env -> history -> revision_number } successfully.</p>
< p >< a href = '?page=" . rawurlencode($env->page) . "' > Go back </ a > to the page , or continue < a href = '?action=history&page = " . rawurlencode($env->page) . "' > reviewing its history </ a >.</ p > " ));
// $env->page_filename
//
});
2016-06-03 07:45:17 +00:00
2016-06-04 12:52:45 +00:00
register_save_preprocessor ( " history_add_revision " );
2018-07-03 10:54:54 +00:00
if ( module_exists ( " feature-stats " )) {
statistic_add ([
" id " => " history_most_revisions " ,
" name " => " Most revised page " ,
" type " => " scalar " ,
" update " => function ( $old_stats ) {
global $pageindex ;
$target_pagename = " " ;
$target_revisions = - 1 ;
foreach ( $pageindex as $pagename => $pagedata ) {
if ( ! isset ( $pagedata -> history ))
continue ;
$revisions_count = count ( $pagedata -> history );
if ( $revisions_count > $target_revisions ) {
$target_revisions = $revisions_count ;
$target_pagename = $pagename ;
}
}
$result = new stdClass (); // completed, value, state
$result -> completed = true ;
$result -> value = " (no revisions saved yet) " ;
if ( $target_revisions > - 1 ) {
$result -> value = " $target_revisions (<a href='?page= " . rawurlencode ( $target_pagename ) . " '> " . htmlentities ( $target_pagename ) . " </a>) " ;
}
return $result ;
}
]);
}
2016-06-03 07:45:17 +00:00
}
]);
2018-07-02 22:44:10 +00:00
/**
* Adds a history revision against a page .
* Note : Does not updaate the current page content ! This function _only_
* records a new revision against a page name . Thus it is possible to have a
* disparaty between the history revisions and the actual content displayed in
* the current revision if you ' re not careful !
* @ param object $pageinfo The pageindex object of the page to operate on .
* @ param string $newsource The page content to save as the new revision .
* @ param string $oldsource The old page content that is the current revision ( before the update ) .
* @ param boolean $save_pageindex Whether the page index should be saved to disk .
* @ param string $change_type The type of change to record this as in the history revision log
*/
function history_add_revision ( & $pageinfo , & $newsource , & $oldsource , $save_pageindex = true , $change_type = " edit " ) {
2018-07-03 11:15:16 +00:00
global $env , $paths , $settings , $pageindex ;
2016-06-04 12:52:45 +00:00
if ( ! isset ( $pageinfo -> history ))
$pageinfo -> history = [];
// Save the *new source* as a revision
// This results in 2 copies of the current source, but this is ok
2018-07-02 22:44:10 +00:00
// since any time someone changes something, it creates a new revision
2016-06-04 12:52:45 +00:00
// Note that we can't save the old source here because we'd have no
// clue who edited it since $pageinfo has already been updated by
// this point
// TODO Store tag changes here
2018-07-03 11:15:16 +00:00
end ( $pageinfo -> history ); // Calculate the next revision id - we can't jsut count the reivisions here because we might have a revision limit
$nextRid = $pageinfo -> history [ key ( $pageinfo -> history )] -> rid + 1 ;
2016-06-04 12:52:45 +00:00
$ridFilename = " $pageinfo->filename .r $nextRid " ;
// Insert a new entry into the history
$pageinfo -> history [] = [
2018-07-02 22:44:10 +00:00
" type " => $change_type , // We might want to store other types later (e.g. page moves)
2016-06-04 12:52:45 +00:00
" rid " => $nextRid ,
" timestamp " => time (),
" filename " => $ridFilename ,
" newsize " => strlen ( $newsource ),
" sizediff " => strlen ( $newsource ) - strlen ( $oldsource ),
" editor " => $pageinfo -> lasteditor
];
// Save the new source as a revision
2018-07-02 22:44:10 +00:00
$result = file_put_contents ( " $env->storage_prefix $ridFilename " , $newsource );
2016-06-04 12:52:45 +00:00
2018-07-03 11:15:16 +00:00
if ( $result !== false &&
$settings -> history_max_revisions > - 1 ) {
while ( count ( $pageinfo -> history ) > $settings -> history_max_revisions ) {
// We've got too many revisions - trim one off & delete it
$oldest_revision = array_shift ( $pageinfo -> history );
unlink ( " $env->storage_prefix / $oldest_revision->filename " );
}
}
2016-06-04 12:52:45 +00:00
// Save the edited pageindex
2018-07-02 22:44:10 +00:00
if ( $result !== false && $save_pageindex )
$result = file_put_contents ( $paths -> pageindex , json_encode ( $pageindex , JSON_PRETTY_PRINT ));
2018-07-03 11:15:16 +00:00
2018-07-02 22:44:10 +00:00
return $result ;
2016-06-04 12:52:45 +00:00
}
2016-06-03 07:45:17 +00:00
?>