mirror of
https://github.com/BillyOutlast/Gazelle-Porn.git
synced 2026-07-01 06:41:50 -04:00
36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
|
|
/* A script to import the old WhatCD wiki articles from the 10th birthday release */
|
|
|
|
define('MEMORY_EXCEPTION', true);
|
|
define('TIME_EXCEPTION', true);
|
|
define('ERROR_EXCEPTION', true);
|
|
|
|
require(__DIR__ . '/../classes/includes.php');
|
|
|
|
$Debug->set_flag('Debug constructed');
|
|
|
|
$in = fopen($argv[1], 'r');
|
|
|
|
$row = fgets($in);
|
|
list(, $ID) = explode(':', str_replace(["\n", "\r"], '', fgets($in)));
|
|
list(, $read) = explode(':', str_replace(["\n", "\r"], '', fgets($in)));
|
|
list(, $edit) = explode(':', str_replace(["\n", "\r"], '', fgets($in)));
|
|
list(, $date) = explode(':', str_replace(["\n", "\r"], '', fgets($in)), 2);
|
|
list(, $title) = explode(':', str_replace(["\n", "\r"], '', fgets($in)), 2);
|
|
list(, $body) = explode(':', fgets($in));
|
|
|
|
$title = '[WHAT.CD] ' . trim($title);
|
|
$body = trim($body);
|
|
|
|
echo "$title\n";
|
|
|
|
while (($row = fgets($in))) {
|
|
$body .= $row;
|
|
}
|
|
|
|
$DB->prepared_query('
|
|
INSERT INTO wiki_articles (Title, Body, MinClassRead, MinClassEdit, Date, Author)
|
|
VALUES (?, ?, 800, 800, now(), 2)
|
|
', $title, $body);
|