mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
31 lines
879 B
PHP
31 lines
879 B
PHP
<?php
|
|
|
|
/* A script to import the old WhatCD wiki articles from the 10th birthday release */
|
|
|
|
require_once(__DIR__ . '/../lib/bootstrap.php');
|
|
|
|
$in = fopen($argv[1], 'r');
|
|
|
|
$row = fgets($in);
|
|
[, $ID] = explode(':', str_replace(["\n", "\r"], '', fgets($in)));
|
|
[, $read] = explode(':', str_replace(["\n", "\r"], '', fgets($in)));
|
|
[, $edit] = explode(':', str_replace(["\n", "\r"], '', fgets($in)));
|
|
[, $date] = explode(':', str_replace(["\n", "\r"], '', fgets($in)), 2);
|
|
[, $title] = explode(':', str_replace(["\n", "\r"], '', fgets($in)), 2);
|
|
[, $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
|
|
);
|