User:SoxBot VI/Source
<source lang="php"> <?php /** Chris G Bot 3 - http://en.wikipedia.org/wiki/User:Chris_G_Bot_3
* An archving bot for WP:CHU and WP:CHU/SUL * Copyright (C) 2008 Chris Grant - http://en.wikipedia.org/wiki/User:Chris_G * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * Developers (add your self here if you worked on the code): * Chris - User:Chris_G - Wrote up the main code * Cobi - User:Cobi - Wrote some of botclasses.php **/
/* Setup my classes */ include('/home/soxred93/chrisbots/classes/botclasses.php'); include('/home/soxred93/soxbots/wikibot.classes.php'); $wiki = new wikipedia; $wpapi = new wikipediaapi; $wpi = new wikipediaindex; $wiki->url = 'http://en.wikipedia.org/w/api.php';
/* All the login stuff */ $user = 'SoxBot VI'; echo $pass; require('/home/soxred93/chrisbots/classes/password.php'); $wiki->login($user,$pass); $wpapi->login($user,$pass); unset($pass);
/* Some config vars */
/* WP:CHU */ $chu = 'Wikipedia:Changing username'; $chu_notdone = $chu.'/Unfulfilled/'.date('Y').'/'.date('F'); $chu_done = 'Wikipedia:Changing username/Archive';
/* WP:CHU/SUL */ $archive_length = 100000; $sul = 'Wikipedia:Changing username/SUL'; $sul_done = $sul.'/Completed/'; $sul_notdone = $sul.'/Rejected/';
/* Work out the length of the archives and which archive to use */
$i = 1;
$temp = $sul_done . $i;
while ($i != false) {
$data = $wiki->getpage($sul_done.$i);
sleep(1); //We're looping - we need this
if (strlen($data) > $archive_length) {
$i++;
$temp = $sul_done . $i;
}
else {
$i = false;
$sul_done = $temp;
}
}
$i = 1;
$temp = $sul_notdone . $i;
while ($i != false) {
$data = $wiki->getpage($sul_notdone.$i);
sleep(1); //We're looping - we need this
if (strlen($data) > $archive_length) {
$i++;
$temp = $sul_notdone . $i;
}
else {
$i = false;
$sul_notdone = $temp;
}
}
$i = 47;
$temp = $chu_done . $i;
while ($i != false) {
$data = $wiki->getpage($temp);
sleep(1); //We're looping - we need this
if (strlen($data) > $archive_length) {
$i++;
$temp = $chu_done . $i;
}
else {
$i = false;
$chu_done = $temp;
}
}
/* Get all the crats names - for parsing the signatures */ $x = $wiki->query('?action=query&list=allusers&augroup=bureaucrat&aulimit=500&format=php'); foreach ($x['query']['allusers'] as $t) { $crats[] = $t['name']; }
/* Archive WP:CHU/SUL */ archive($sul,$sul_done,$sul_notdone);
/* Archive WP:CHU */ archive($chu,$chu_done,$chu_notdone);
/* Upload the source to User:$user/Source */ $page = "User:$user/Source"; $data = $wiki->getpage($page); $summary = 'Automated source upload (BOT EDIT)'; $source = "<source lang=\"php\">\n".file_get_contents(__FILE__); if ($data != $source) { $wiki->edit($page,$source,$summary); sleep(15); }
function archive($page, $done_archive, $notdone_archive) { global $crats, $wiki;
$data = $wiki->getpage($page); $new_data = $data;
/* Split the page into threads */ $temp = explode(chr(10), $data); $i = 0; foreach ($temp as $t) { if (preg_match('/^===.+===$/i', $t)) { $i++; } $requests[$i] = $requests[$i] ."\n". $t; }
$done = 0; $notdone = 0; foreach ($requests as $r) { foreach ($crats as $c) { if (preg_match("/\{\{done\}\}.*User(( |_)talk)?:$c.* (\d+:\d+, \d+ [a-z]+ \d+ \(UTC\))/i", $r, $m)) { $timestamp = trim($m[3]); $unix = strtotime($timestamp); $time = strtotime('12 hours', $unix); if (time() > $time) { $threads['done'] = $threads['done'] . $r; $new_data = str_replace($r, , $new_data); $done++; } break; } elseif (preg_match("/\{\{not.?done\}\}.*User(( |_)talk)?:$c.* (\d+:\d+, \d+ [a-z]+ \d+ \(UTC\))/i", $r, $m)) { $timestamp = trim($m[3]); $unix = strtotime($timestamp); $time = strtotime('36 hours', $unix); if (time() > $time) { $threads['notdone'] = $threads['notdone'] . $r; $new_data = str_replace($r, , $new_data); $notdone++; } break; } } }
/* Remove the requests from the page */ /* Work out the edit summary */ $summary = "Archiving "; if ($done > 0) { $summary .= "$done Completed Request(s) "; $completed = true; } if ($notdone > 0) { if ($completed) { $summary .= "and $notdone Rejected Request(s)"; } else { $summary .= "$notdone Rejected Request(s)"; } } $summary .= " (BOT EDIT)"; $minor = true; echo $new_data; if ($data != $new_data) { print_r($wpi->post($page,$new_data,$summary,$minor)); sleep(15); /* From WP:BOT - bots doing non-urgent tasks may edit approximately once every ten seconds */
if ($done > 0) {
/* Add the
Done requests to their archive */
$data = $wiki->getpage($done_archive);
$new_data = "$data\n".$threads['done'];
$summary = "Adding $done Completed Request(s) (BOT EDIT)";
$minor = true;
print_r($wpi->post($done_archive,$new_data,$summary,$minor));
sleep(15);
}
if ($notdone > 0) {
/* Add the
Not done requests to their archive */
$data = $wiki->getpage($notdone_archive);
$new_data = "$data\n".$threads['notdone'];
$summary = "Adding $notdone Rejected Request(s) (BOT EDIT)";
$minor = true;
print_r($wpi->post($notdone_archive,$new_data,$summary,$minor));
sleep(15);
}
}
}
?>
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.