1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603
|
<?php
/**
* This file implements importing of Movable Type entries into b2evolution.
*
* {@internal
* TODO:
* - Wrap this by an abstract import class!
* - list of all posts, editable (overkill?)
* - assign comment_author_ID to comments if user exist?! }}
*
*
* This script was developed and tested with b2evolution 0.9.0.4 (on Sourceforge CVS)
* and Movable Type 2.64 and 2.661.
* It should work quite alright with b2evo 0.9 and later though.
*
* This file is part of the b2evolution/evocms project - {@link http://b2evolution.net/}.
* See also {@link http://sourceforge.net/projects/evocms/}.
*
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}.
* Parts of this file are copyright (c)2004-2005 by Daniel HAHLER - {@link http://thequod.de/contact}.
* Credits go to the WordPress team (@link http://wordpress.org), where I got the basic
* import-mt.php script with most of the core functions. Thank you!
*
* @license http://b2evolution.net/about/license.html GNU General Public License (GPL)
* {@internal
* b2evolution 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.
*
* b2evolution 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 b2evolution; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* In addition, as a special exception, the copyright holders give permission to link
* the code of this program with the PHP/SWF Charts library by maani.us (or with
* modified versions of this library that use the same license as PHP/SWF Charts library
* by maani.us), and distribute linked combinations including the two. You must obey the
* GNU General Public License in all respects for all of the code used other than the
* PHP/SWF Charts library by maani.us. If you modify this file, you may extend this
* exception to your version of the file, but you are not obligated to do so. If you do
* not wish to do so, delete this exception statement from your version.
* }}
*
* {@internal
* Daniel HAHLER grants Franois PLANQUE the right to license
* Daniel HAHLER's contributions to this file and the b2evolution project
* under any OSI approved OSS license (http://www.opensource.org/licenses/).
* }}
*
* @package admin
*
* {@internal Below is a list of authors who have contributed to design/coding of this file: }}
* @author fplanque: Franois PLANQUE
* @author blueyed: Daniel HAHLER
*
* @version $Id: import-mt.php,v 1.1.2.25 2005/10/03 23:33:02 blueyed Exp $
*/
/**
* Enter the relative path of the import.txt file containing the MT entries.
* If the file is called import.txt and it is in /admin, then this line should be:
* <code>
* define('MTEXPORT', 'import.txt');
* </code>
*
* You only need this to force a specific file instead of using a dropdown list
* (UI selection)
*/
define('MTEXPORT', '');
/**
* Set to true to get a lot of var_dumps, wrapped in pre tags
*/
$output_debug_dump = 0;
// ----------- don't change below if you don't know what you do ------------------------
set_magic_quotes_runtime( 0 ); // be clear on this
$head = <<<EOB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>b2evolution › Import from Movable Type</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="variation.css" rel="stylesheet" type="text/css" title="Variation" />
<link href="desert.css" rel="alternate stylesheet" type="text/css" title="Desert" />
<link href="legacy.css" rel="alternate stylesheet" type="text/css" title="Legacy" />
EOB;
if( is_file( dirname(__FILE__).'/custom.css' ) )
{
$head .= '<link href="custom.css" rel="alternate stylesheet" type="text/css" title="Custom" />';
}
$head .= <<<EOB
<script type="text/javascript" src="styleswitcher.js"></script>
</head>
<body>
<div id="header">
<a href="http://b2evolution.net"><img id="evologo" src="../img/b2evolution_minilogo2.png" alt="b2evolution" title="visit b2evolution's website" width="185" height="40" /></a>
<div id="headinfo">
<br /><span style="font-size:150%; font-weight:bold">Import Movable Type into b2evolution</span>
</div>
</div>
EOB;
if( !file_exists('../conf/_config.php') )
{
dieerror( "There doesn't seem to be a conf/_config.php file. You must install b2evolution before you can import any entries.", $head );
}
require( '../conf/_config.php' );
if( (!isset($config_is_done) || !$config_is_done) )
{
if( file_exists(dirname(__FILE__)."/$admin_dirout/$core_subdir/_conf_error_page.php") )
{
$error_message = '';
require( dirname(__FILE__)."/$admin_dirout/$core_subdir/_conf_error_page.php" );
}
dieerror( 'b2evolution configuration is not done yet.', $head );
}
$use_obhandler = 0; // no output buffering!
require( '../b2evocore/_main.php' );
// Check if user is logged in and is in group #1 (admins)
if( !is_logged_in() || $current_User->Group->ID != 1 )
{ // login failed
echo $head;
$error = 'You must login with an administrator (group #1) account.';
$redirect_to = $ReqURI;
require( dirname(__FILE__) . "/$admin_dirout/$htsrv_subdir/login.php" );
}
echo $head;
param( 'exportedfile', 'string', '' );
param( 'mode', 'string', 'normal' );
/*** mode-tabs ***/ ?>
<ul class="tabs"><?php
foreach( array( 'easy', 'normal', 'expert' ) as $tab )
{
echo ( $tab == $mode ) ? '<li class="current">' : '<li>';
echo '<a href="import-mt.php?mode='.$tab.( !empty($exportedfile) ? '&exportedfile='.$exportedfile : '' ).'">'.ucwords($tab).'</a></li>';
}
?></ul></div>
<div style="padding-top:1em;clear:both;">
<?php
// check existence of export-file
if( empty($exportedfile) )
{
if( '' != MTEXPORT && !file_exists(MTEXPORT) )
{
?>
<div class="error"><p>
The MT export file you defined in MTEXPORT at top of the script does not seem to exist.
Please check the path you've given for MTEXPORT or choose a file below.
</p></div>
<?php
}
elseif( '' != MTEXPORT )
{
$exportedfile = MTEXPORT;
}
if( empty($exportedfile) )
{ // no valid MTEXPORT defined
chooseexportfile();
die( '</div></div></body></html>' );
}
}
else
{
if( !file_exists($exportedfile) )
{
chooseexportfile();
dieerror("The MT export file [$exportedfile] you've chosen does not seem to exist. Please check path/permission.");
}
}
// get the params
param( 'simulate', 'integer', 0 );
param( 'default_password', 'string', 'changeme' );
param( 'default_password2', 'string', 'changeme' );
param( 'post_locale', 'string', $Settings->get( 'default_locale' ) );
if( $default_password != $default_password2 )
{
dieerror( 'The two passwords for new users are not identical.' );
}
param( 'default_userlevel', 'integer', 1 );
if( $default_userlevel > 10 ) $default_userlevel = 10;
param( 'default_usergroup', 'integer', $Settings->get('newusers_grp_ID') );
param( 'default_convert_breaks', 'integer', 1 );
param( 'convert_html_tags', 'integer', 0 );
param( 'action', 'string', '' );
// global arrays
$categories_countprim = array(); // counts posts in primary categories
// load caches
blog_load_cache();
cat_load_cache( false );
$i_user = -1;
if( empty($action) )
{
param( 'mode', 'string', 'normal', true );
import_data_extract_authors_cats();
?>
<div class="panelinfo">
<p>We are about to import <?php
echo '['.$exportedfile.'].';
if( '' == MTEXPORT )
{
?> [<a href="import-mt.php?mode=<?php echo $mode ?>">choose another export-file</a>]<?php
} ?></p>
<p>This file contains <?php echo count( $posts ) ?> post(s) from <?php echo count( $authors ) ?> author(s) in <?php echo count( $categories ) ?> category(ies).</p>
<p>We'll import into b2evolution's database "<?php echo DB_NAME ?>".</p>
</div>
<div class="panelinfo">
<p>Before importing, you should check the URLs of any <img> tags you may have in <?php echo $exportedfile ?>. Will these URLs still be valid after the migration? If not, we advise you do a search and replace on <?php echo $exportedfile ?> before continuing.</p>
<p>Preferred location for inline images is [<?php echo $fileupload_realpath ?>]<br />
If you decide to use this location, your IMG SRC urls should point to [<?php echo $fileupload_url ?>]</p>
<p>You can also handle the images later, but it might be easier now :)</p>
</div>
<div class="panelinfo">
<p>The importer is smart enough not to import duplicates, so you can run this procedure multiple times without worrying if — for whatever reason — it doesn't finish (script timeout for example).</p>
</div>
<div class="panelblock">
<form class="fform" action="import-mt.php" method="post">
<input type="hidden" name="action" value="import" />
<?php
if( !empty($exportedfile) )
{
?><input type="hidden" name="exportedfile" value="<?php echo format_to_output( $exportedfile, 'formvalue' ) ?>" />
<?php
}
?>
<?php
switch( $mode )
{
case 'easy':
?>
<h2>Easy Import:</h2>
<ul>
<li>MT users with no matching b2evolution user login will be automatically created.</li>
<li>MT categories with no matching b2evolution category name will be automatically created (in the default blog selected below.)</li>
<?php
if( isset($categories_countprim['[no category assigned]']) )
{ ?>
<li>Entries without categories (<?php echo $categories_countprim['[no category assigned]'] ?>) will be imported to category '[no category assigned]' in the default blog.</li>
<?php
}
echo '</ul>';
break;
case 'normal':
?>
<h2>Normal Import:</h2>
<ul>
<li>MT users can be mapped to existing b2evo users, mapped to new users (provide login) or ignored.</li>
<li>Categories can be mapped to existing b2evo categories, mapped to new categories (provide location + name) or ignored.</li>
</ul>
<?php
break;
case 'expert':
?>
<h2>Expert Import:</h2>
<p>This gives you as much power as we can provide. It's like normal mode, but lets you map categories to a whole set of b2evo categories (one main category and as many extra categories as you like). You can run the importer multiple times to use different sets of b2evo categories for different sets of MT categories.</p>
<?php
break;
}
?>
<?php if( $mode != 'expert' ) { ?>
<fieldset>
<legend>Default blog</legend>
<fieldset>
<div class="label"><?php echo ( $mode == 'easy' ) ? 'Create categories in blog' : 'Use as default blog for categories' ?>:</div>
<div class="input">
<select name="default_blog">
<?php
$BlogCache->option_list( 2 ); // use first non-all blog as default
?>
</select>
</div>
</fieldset>
</fieldset>
<?php } ?>
<?php if( $mode != 'easy' ) { ?>
<fieldset><legend>Author mapping</legend>
<?php
$evousers = $DB->get_results("SELECT * FROM $tableusers ORDER BY ID");
foreach ($authors as $author)
{
++$i_user;
?>
<fieldset>
<div class="label"><label><?php echo $author ?></label></div>
<div class="input">
<select name="user_select[]">
<option value="#CREATENEW#" selected="selected"> Create new: </option>
<option value="#IGNORE#"> Ignore! </option>
<?php
foreach( $evousers as $user )
{
?><option value="<?php echo $user->ID ?>"<?php if( strtolower($author) == strtolower( $user->user_login ) ) echo ' selected="selected"';
echo '>'.format_to_output(strtolower($user->user_login), 'formvalue').'</option>';
}
?></select>
<input type="text" value="<?php echo format_to_output($author, 'formvalue') ?>" name="user_name[]" maxlength="30" class="input" />
<span class="notes">(login for new user)</span>
</div>
</fieldset>
<?php
}
?>
</fieldset>
<?php } ?>
<fieldset><legend>New user defaults</legend>
<?php
form_text( 'default_password', $default_password, 20, 'Password for new users', 'this will be the password for users created during migration (default is "changeme")', 30 , '', 'password' );
form_text( 'default_password2', $default_password, 20, 'Confirm password', 'please confirm the password', 30 , '', 'password' );
form_select_object( 'default_usergroup', $Settings->get('newusers_grp_ID'), $GroupCache, T_('User group') );
$field_note = '[0 - 10] '.sprintf( T_('See <a %s>online manual</a> for details.'), 'href="http://b2evolution.net/man/user_levels.html"' );
form_text( 'default_userlevel', $Settings->get('newusers_level'), 2, T_('Level'), $field_note, 2 );
?>
</fieldset>
<?php if( $mode != 'easy' ){ ?>
<fieldset><legend>Category mapping</legend>
<?php
$i_cat = 0;
foreach( $categories as $cat )
{
?>
<fieldset>
<div class="label">
<label><?php echo format_to_output($cat, 'htmlbody') ?></label>
<br /><span class="notes" style="font-weight:normal">used <?php echo @(int)$categories_countprim[$cat] ?> times as primary category</span>
</div>
<div class="input"><select name="catmap_select[]">
<?php
if( $mode == 'expert' )
echo '<option value="#DEFAULTSET#">Map to default categories set (see below)</option>';
else echo '<option value="#DEFAULTBLOG#">Create in default blog:</option>'; ?>
<?php cats_optionslist( $cat ) ?>
<option value="#IGNORE#">Ignore entries with this primary cat</option>
</select>
<input type="text" name="catmap_name[]" value="<?php echo format_to_output( $cat, 'formvalue' ) ?>" size="30" />
</div>
</fieldset>
<?php
$i_cat++;
} ?>
<?php if( $mode == 'expert' ) fieldset_cats() ?>
</fieldset>
<?php } ?>
<fieldset><legend>Post/Entry defaults</legend>
<?php
form_checkbox( 'default_convert_breaks', $default_convert_breaks, 'Convert-Breaks default', 'will be used for posts with empty CONVERT BREAKS or "__default__"' );
form_select( 'post_locale', $Settings->get('default_locale'), 'locale_options', T_('Default locale'), 'Locale for posts.' );
form_checkbox( 'convert_html_tags', $convert_html_tags, 'Convert ugly HTML', 'this will lowercase all html tags and add a XHTML compliant closing tag to <br>, <img>, <hr> (you\'ll get notes)' );
if( $mode != 'easy' )
{ // we'll use 'default' when importing
?>
<div class="label">Renderers:</div>
<div class="input"><?php renderer_list() ?></div>
<?php } ?>
</fieldset>
<?php /*<fieldset style="padding-left:1ex"><legend><img>-URL mapping</legend>
<a name="imgurls"><p class="notes">This lets you map found image urls (their basename) to another basename.
You probably want to put the images that you had on your MT installation into b2evo's media (fileupload) folder.<br />
So you would use <strong><?php echo $fileupload_url ?></strong> for replacement.<br />
You can leave this empty, of course and nothing will be replaced, but then you'll have probably broken images.</p></a>
<?php
preg_match_all( '#<img .*?src="([^"]*)/.*?"#is', $importdata, $matches );
foreach( $matches[1] as $imgurl )
{
if( !isset($imgurlscount[ $imgurl ]) )
$imgurlscount[ $imgurl ] = 1;
else $imgurlscount[ $imgurl ]++;
}
asort( $imgurlscount );
$imgurlscount = array_reverse( $imgurlscount );
param( 'singleimgurls', 'integer', 0 );
$i = 0;
foreach( $imgurlscount as $imgurl => $counter ) if( $counter > 1 || $singleimgurls )
{
?><input type="hidden" name="url_search[<?php echo $i ?>]" value="<?php echo format_to_output( $imgurl, 'formvalue' ) ?>" />
<strong><?php echo $imgurl ?></strong>:<br />
<div class="input"><input style="clear:left" type="text" name="url_replace[]" size="50" /></div>
<span class="notes" style="font-weight:normal"> (used <?php echo $counter ?> times)</span>
<br />
<?php
$i++;
}
echo '<p class="center"><a name="imgurls" href="import-mt.php?tab=import&singleimgurls='.( $singleimgurls ? '0' : '1' );
if( !empty($exportedfile) ) echo '&exportedfile='.$exportedfile;
echo '">'.( $singleimgurls ? 'hide img urls only used once' : 'show also img urls only used once').'</a></p>';
?>
</fieldset>
*/ ?>
<fieldset><legend>other settings</legend>
<?php
form_checkbox( 'simulate', $simulate, 'Simulate: do not import really', 'Use this to test importing, without really changing the target database.' );
?>
</fieldset>
<p>Please note:</p>
<ul>
<li>b2evolution does not support excerpts yet.
So, we will import them in front of the body with "<?php echo htmlspecialchars('<!--more-->< !--noteaser-->') ?>" tags,
but only if there is no extended body for the post. In that case we'll use the extended body appended with the <!--more--> tag to the body - excerpts are lost then (but you'll get a note about it).
</li>
</ul>
<fieldset class="submit">
<div class="input">
<input type="hidden" name="mode" value="<?php echo $mode ?>" />
<input class="search" type="submit" value=" Import! " />
<input class="search" type="reset" value="Reset form" />
</div>
</fieldset>
</div>
</form>
<?php
}
/*************
IMPORT
*************/
elseif( $action == 'import' )
{
?>
<div class="panelinfo">
<h4>Importing from [<?php echo $exportedfile ?>]..<?php if( $simulate ) echo ' (simulating)' ?></h4>
<?php
if( function_exists( 'set_time_limit' ) )
{
set_time_limit( 900 ); // 15 minutes ought to be enough for everybody *g
}
@ini_set( 'max_execution_time', '900' );
// counters
$count_postscreated = 0;
$count_userscreated = 0;
$count_commentscreated = 0;
$count_trackbackscreated = 0;
// get POSTed data
param( 'mode', 'string', true );
if( $mode != 'expert' )
{
param( 'default_blog', 'integer', true );
}
import_data_extract_authors_cats();
{{{ // map categories
/**
* associative array that maps MT cats to b2evo.
* key is the MT category name.
* values:
* holds type and value:
* types:
* - 'blogid': blog_id, new name
* - 'catid': cat_id
* - 'defaultset': -
* - 'ignore': -
*/
$catsmapped = array();
$i_cat = -1;
// category mapping
if( !isset($_POST['catmap_select']) )
{ // no category mapping
foreach( $categories as $cat )
{
$catsmapped[ $cat ] = array('blogid', $default_blog, $cat );
}
}
else foreach( $_POST['catmap_select'] as $cat )
{
$i_cat++;
if( $cat == '#IGNORE#' )
{
$catsmapped[ $categories[$i_cat] ] = array( 'ignore' );
}
elseif( $cat == '#DEFAULTSET#' )
{
if( !isset( $default_post_category ) )
{ // get the default category set
if( isset($_POST['post_category']) )
{
$default_post_category = (int)$_POST['post_category'];
}
else
{
dieerror( 'You have chosen to map at least one category to the default category set, but you have not selected a main category for this set!<br />Please go back and correct that..' );
}
$default_post_extracats = array();
if( isset( $_POST['post_extracats'] ) )
{ // get extra cats
foreach( $_POST['post_extracats'] as $tcat )
{
$default_post_extracats[] = (int)$tcat;
}
}
}
$catsmapped[ $categories[$i_cat] ] = array( 'defaultset' );
}
elseif( preg_match( '/^\d+$/', $cat, $match ) )
{ // we map to a b2evo cat
$catsmapped[ $categories[$i_cat] ] = array('catid', (int)$cat);
}
elseif( $cat == '#DEFAULTBLOG#'
|| preg_match( '/^#NEW#(\d+)$/', $cat, $match ) )
{ // we want a new category
$blog_id = ($cat == '#DEFAULTBLOG#') ? $default_blog : $match[1];
// remember the name to create it when posts get inserted
$catsmapped[ $categories[$i_cat] ] = array( 'blogid', $blog_id, remove_magic_quotes( $_POST['catmap_name'][$i_cat]) );
}
else
{
dieerror('This should never happen @catmapping. Please report it! (cat='.$cat.' / ');
}
}
foreach( $catsmapped as $mtcat => $values ) if( $values[0] == 'blogid' )
{
global $tablecategories;
echo 'Category <span style="color:#09c">'.$values[2].'</span> (for blog #'.$values[1].') ';
// check if it already exists
$cat_ID = $DB->get_var("SELECT cat_ID FROM $tablecategories
WHERE cat_blog_ID = {$values[1]}
AND cat_name = ".$DB->quote( $values[2] ));
if( !$cat_ID )
{
echo 'will be created with first post.<br />';
}
else
{
echo 'already exists.<br />';
$catsmapped[ $mtcat ] = array('catid', (int)$cat_ID); // map to existing category
}
}
debug_dump( $catsmapped, 'catsmapped' );
}}}
// get renderers
if( $mode != 'easy' )
{
$default_renderers = array();
if( !isset($_POST['renderers']) )
{ // all unchecked
$default_renderers = array();
}
else $default_renderers = $_POST['renderers'];
// the special Auto-P renderer
param( 'autop', 'string', true );
if( $autop === '1' )
{ // use always
$default_renderers[] = 'b2WPAutP';
}
}
else
{
$default_renderers = $Renderer->validate_list( array('default') );
$autop = 1;
}
/*
// get image s&r
$urlsearch = array();
$urlreplace = array();
$i = 0;
foreach( $_POST['url_replace'] as $replace )
{
if( !empty($replace) )
{
$urlsearch[] = remove_magic_quotes($_POST['url_search'][$i]);
$urlreplace[] = remove_magic_quotes( $replace );
}
$i++;
}
*/
// get users
$i_user = 0;
if( !isset($_POST['user_select']) )
{
foreach( $authors as $author )
{
$usersmapped[ $author ] = array('createnew', $author );
}
}
else foreach( $_POST['user_select'] as $select )
{
$mtauthor = $authors[ $i_user ];
if( $select == '#IGNORE#' )
{
$usersmapped[ $mtauthor ] = array( 'ignore' );
}
elseif( $select == '#CREATENEW#' )
{
$usersmapped[ $mtauthor ] = array( 'createnew', remove_magic_quotes( $_POST['user_name'][$i_user] ) );
}
elseif( preg_match( '#\d+#', $select, $match ) )
{
$usersmapped[ $mtauthor ] = array( 'b2evo', $select );
}
else
{
?><p class="error">Unknown user mapping. This should never ever happen. Please report it.</p><?php
}
$i_user++;
}
debug_dump( $usersmapped, 'usersmapped' );
if( $simulate )
{
$simulate_cat_id = $DB->get_var( 'SELECT MAX( cat_ID )+1 FROM T_categories' );
}
$i = -1;
echo "\n<ol>";
foreach ($posts as $post)
{
++$i;
// Defaults:
$post_catids = array();
$post_renderers = $default_renderers;
$post_status = 'published';
// strip the post's last '-----'
$post = preg_replace("|-----\n+$|s", '', $post);
// first line is author of post
$post_author = trim( substr( $post, 0, strpos( $post, "\n", 1 ) ) );
$post = preg_replace( '/^.*\n/', '', $post );
$message = "\n<li>Post from ".format_to_output( $post_author, 'entityencoded' ).' <ul>';
// Take the pings out first
preg_match("|(-----\n\nPING:.*)|s", $post, $pings);
$post = preg_replace("|(-----\n\nPING:.*)|s", '', $post);
// Then take the comments out
preg_match("|(-----\nCOMMENT:.*)|s", $post, $comments);
$post = preg_replace("|(-----\nCOMMENT:.*)|s", '', $post);
// We ignore the keywords
$post = preg_replace("|(-----\nKEYWORDS:.*)|s", '', $post);
// We want the excerpt - it's put with more and noteaser tag into main body, only if we have no extended body!
preg_match("|-----\nEXCERPT:(.*)|s", $post, $excerpt);
$excerpt = trim($excerpt[1]);
$post = preg_replace("|(-----\nEXCERPT:.*)|s", '', $post);
// We're going to put extended body into main body with a more tag
preg_match("|-----\nEXTENDED BODY:(.*)|s", $post, $extended);
$extended = trim($extended[1]);
$post = preg_replace("|(-----\nEXTENDED BODY:.*)|s", '', $post);
// Now for the main body
preg_match("|-----\nBODY:(.*)|s", $post, $body);
$body = trim($body[1]);
if( empty($extended) )
{ // no extended body, so we can use the excerpt
if( empty($excerpt) )
$post_content = $body;
else $post_content = $excerpt."\n<!--more--><!--noteaser-->\n".$body;
}
else
{ // we'll use body and extended body
if( !empty($excerpt) )
{
$message .= '<li><span style="color:red">Excerpt discarded because of existing extended body:</span>
<blockquote>'.htmlspecialchars($excerpt).'</blockquote></li>';
}
$post_content = $body."\n<!--more-->\n".$extended;
}
$post = preg_replace("|(-----\nBODY:.*)|s", '', $post);
// Grab the metadata from what's left
$metadata = explode("\n", $post);
$post_categories = array();
foreach ($metadata as $line) if( !empty($line) )
{
debug_dump($line);
if( !preg_match("/^(.*?):(.*)/", $line, $token) )
{
$message .= "<li class=\"notes\">Unknown meta-data: [$line] (ignoring)</li>";
continue;
}
$key = trim( $token[1] );
$value = trim( $token[2] );
// Now we decide what it is and what to do with it
switch($key)
{
case 'TITLE':
$message .= '<li>title: '.strip_tags($value).'</li>';
$post_title = $value;
break;
case 'STATUS':
if( strtolower($value) == 'publish' )
$post_status = 'published';
elseif( strtolower($value) == 'draft' )
$post_status = 'draft';
else
{
$message .= '<li>Unknown post status ['.$value.'], using "draft".</li>';
$post_status = 'draft';
}
break;
case 'ALLOW COMMENTS':
$post_allow_comments = $value;
switch( $post_allow_comments ) {
case 0: $comment_status = 'disabled'; break;
case 1: $comment_status = 'open'; break;
case 2: $comment_status = 'closed'; break;
default:
$message .= '<li>Unknown comment status ['.$value.'], using "closed".</li>';
$comment_status = 'closed';
}
break;
case 'CONVERT BREAKS':
if( $value == '__default__' || empty($value) )
{
$post_convert_breaks = $default_convert_breaks;
}
elseif( $value == 'textile_2' && array_search( 'b2DATxtl', $post_renderers ) === false )
{ // add the textile 2 renderer to the post's renderers
$post_renderers[] = 'b2DATxtl';
$post_convert_breaks = 1; // TODO: check if this makes sense!
}
elseif( preg_match('/\d+/', $value) )
{
$post_convert_breaks = (int)( $value > 0 );
}
else
{
$message .= '<li>Unknown CONVERT BREAKS value, using default ('.$default_convert_breaks.')..</li>';
$post_convert_breaks = $default_convert_breaks;
}
if( $autop == 'depends' && $post_convert_breaks && array_search( 'b2WPAutP', $post_renderers ) === false )
{ // add the Auto-P renderer
$post_renderers[] = 'b2WPAutP';
}
break;
case 'ALLOW PINGS':
if( $value == 1)
{
$post_allow_pings = 'open';
}
else
{
$post_allow_pings = 'closed';
}
break;
case 'PRIMARY CATEGORY':
case 'CATEGORY':
if( !empty($value) && !isset($post_categories[$value]) )
{
if( $catsmapped[ $value ][0] == 'defaultset' )
{ // we add default set
$post_categories[$value] = $default_post_extracats;
array_unshift( $post_categories[$value], 'catid', $default_post_category );
}
else $post_categories[$value] = $catsmapped[ $value ];
}
break;
case 'DATE':
$post_date = strtotime( $value );
$post_date = date('Y-m-d H:i:s', $post_date);
break;
default:
$message .= "\n<li>Unknown key [$key] in metadata:\nvalue: $value\n</li>";
break;
}
} // End foreach (metadata)
$dontimport = 0;
if( empty($post_categories) )
{ // no category metadata found!
if( $catsmapped[ '[no category assigned]' ][0] == 'defaultset' )
{ // we must convert default set
$post_categories['[no category assigned]'] = $default_post_extracats;
array_unshift( $post_categories['[no category assigned]'], 'catid', $default_post_category );
}
else $post_categories[ '[no category assigned]' ] = $catsmapped[ '[no category assigned]' ];
}
// Let's check to see if it's in already
if( $post_ID = $DB->get_var("SELECT ID FROM $tableposts WHERE post_title = ".$DB->quote($post_title)." AND post_issue_date = '$post_date'")) {
$message .= '<li style="color:blue">Post already imported.</li>';
}
else
{ // insert post
// check&map author
switch( $usersmapped[ $post_author ][0] )
{
case 'ignore':
$message .= '<li style="color:blue">User ignored!</li>';
echo $message.'</ul>';
continue; // next post
case 'b2evo':
$post_author = $usersmapped[ $post_author ][1];
break;
case 'createnew':
// check if the user already exists
$user_data = get_userdatabylogin( $usersmapped[ $post_author ][1] );
if( $user_data )
{
$post_author = $user_data['ID'];
}
else
{
$new_user = new User();
$new_user->set('login', strtolower($usersmapped[ $post_author ][1]));
$new_user->set('nickname', $usersmapped[ $post_author ][1]);
$new_user->set('pass', md5( $default_password ));
$new_user->set('level', $default_userlevel);
$new_user_Group = $GroupCache->get_by_ID( $default_usergroup );
$new_user->setGroup( $new_user_Group );
$new_user->set_datecreated( time() + ($Settings->get('time_difference') * 3600) );
if( $simulate )
{
$cache_userdata[ $post_author ] = array( 'ID' => 'simulating' );
}
else
{
$new_user->dbinsert();
}
$message .= '<li style="color:orange">user '.$usersmapped[ $post_author ][1].' created</li>';
$count_userscreated++;
$post_author = $new_user->ID;
}
break;
default:
$message .= '<li style="color:red">unknown type in checkauthor ('.$usersmapped[ $author ][0].'). This should never ever happen. Post ignored. Please report it.</li>';
echo $message.'</ul>';
continue; // next post
}
debug_dump( $post_categories, 'cats to check' );
// Check categories
$i_cat = -1;
$message_ignored = '';
foreach( $post_categories as $catname => $checkcat )
{
$i_cat++;
switch( $checkcat[0] )
{
case 'catid': // existing b2evo catids
array_shift($checkcat);
while( $cat_id = array_shift($checkcat) )
$post_catids[] = $cat_id; // get all catids
continue;
case 'ignore': // category is ignored
if( $i_cat == 0 )
{ // main category ignored, don't import post
$dontimport = 1;
$message_ignored .= '<li>Main Category "'.$catname.'" ignored! - no import</li>';
break;
}
else
{ // ignored category in extracats, remove it there
$message_ignored .= '<li>Extra category '.$catname.' ignored.</li>';
unset( $post_categories[ $catname ] );
}
break;
case 'blogid': // category has to be created
// create it and remember ID
if( $simulate )
{
$cat_id = ++$simulate_cat_id;
}
else
{
$cat_id = cat_create( $checkcat[2], 'NULL', $checkcat[1] );
}
$catsmapped[ $catname ] = array( 'catid', $cat_id ); // use ID from now on.
if( !isset($cache_categories[ $cat_id ] ) )
{ // stupid workaround because of a bug where cache_categories does not get updated and we want to use get_catname later
$cache_categories[ $cat_id ] = array(
'cat_name' => $checkcat[2],
'cat_blog_ID' => $checkcat[1],
'cat_parent_ID' => NULL,
'cat_postcount' => 0,
'cat_children' => 0
);
}
$post_catids[] = $cat_id;
$message .= '<li style="color:orange">category '.$checkcat[2].' [ID '.$cat_id.'] created</li>';
break;
default:
$message .= '<li style="color:red">This should never ever happen @check_cats. Please report it! (checkcat[0]: '.$checkcat[0].')</li>';
}
}
if( !empty($message_ignored) )
$message .= '<li style="color:blue">Categories ignored: <ul>'.$message_ignored.'</ul></li>';
debug_dump( $dontimport, 'dontimport' );
if( $dontimport )
{ // see var name :)
echo $message;
continue; // next post
}
if( $convert_html_tags )
{
$old_content = $post_content;
// convert tags to lowercase
$post_content = preg_replace( "/(<\/?)(\w+)([^>]*>)/e", "'\\1'.strtolower('\\2').'\\3'", $post_content);
// close br, hr and img tags
$post_content = preg_replace( array('/<(br)>/', '/<(hr\s?.*?)>/', '/<(img\s.*?)>/'), '<\\1 />', remove_magic_quotes($post_content) );
// add quotes for href tags that don't have them
$post_content = preg_replace( '|href=([^"\'][^\s>"\']+)["\']?|', 'href="$1"', $post_content );
$post_content = preg_replace( array('/<(br)>/', '/<(hr\s?.*?)>/', '/<(img\s.*?)>/'), '<\\1 />', remove_magic_quotes($post_content) );
if( $post_content != $old_content )
{
$message .= '<li><p style="color:darkblue;border:1px dashed orange;">'.htmlspecialchars($old_content).'</p>
html-converted to: <p style="color:darkblue;border:1px dashed orange;">'.htmlspecialchars($post_content).'</p></li>';
}
}
/*if( count($urlreplace) )
{
$old_content = $post_content;
foreach( $urlreplace as $search => $replace )
{
$post_content = str_replace( $urlsearch, $urlreplace, $post_content );
}
if( $post_content != $old_content )
{
echo '<p style="color:darkblue;border:1px dashed orange;">'.htmlspecialchars($old_content).'</p>
converted img-links to: <p style="color:darkblue;border:1px dashed orange;">'.htmlspecialchars($post_content).'</p>';
}
}*/
debug_dump( $post_catids, 'post_extracats' );
$post_category = array_shift($post_catids);
debug_dump( $post_category, 'post_category' );
debug_dump( $post_categories, 'post_categories' );
debug_dump( $post_author, 'post_author' );
if( !$simulate )
{
$post_ID =
bpost_create( $post_author, $post_title, $post_content, $post_date, $post_category, $post_catids,
$post_status, $post_locale, '' /* $post_trackbacks */, $post_convert_breaks, true /* $pingsdone */,
'' /* $post_urltitle */, '' /* $post_url */, $comment_status, $post_renderers );
}
$message .= '<li><span style="color:green">Imported successfully</span><ul><li>main category: <span style="color:#09c">'.get_catname( $post_category ).'</span></li>';
if( count($post_catids) )
$message .= '<li>extra categories: <span style="color:#09c">'.preg_replace( '/(\d+)/e', "get_catname('\\1')", implode( ', ', $post_catids ) ).'</span></li>';
$message .= '</ul></li>';
$count_postscreated++;
}
echo $message.'</ul>';
if( count($comments) )
{ // comments
$message = '';
$comments = explode("-----\nCOMMENT:", $comments[0]);
foreach ($comments as $comment)
{
$comment = trim($comment);
if( empty($comment) ) continue;
$comment_author = ripline( 'AUTHOR:', $comment );
$comment_email = ripline( 'EMAIL:', $comment );
$comment_ip = ripline( 'IP:', $comment );
$comment_url = ripline( 'URL:', $comment );
$comment_date = date('Y-m-d H:i:s', strtotime( ripline( 'DATE:', $comment )));
$comment_content = preg_replace("/\n*-----$/", '', $comment);
// Check if it's already in there
if( !$DB->get_row("SELECT * FROM $tablecomments WHERE comment_date = '$comment_date' AND comment_content = ".$DB->quote( $comment_content )) )
{
if( !$simulate )
{
$DB->query( "INSERT INTO $tablecomments( comment_post_ID, comment_type, comment_author_ID, comment_author,
comment_author_email, comment_author_url, comment_author_IP,
comment_date, comment_content)
VALUES( $post_ID, 'comment', 'NULL', ".$DB->quote($comment_author).",
".$DB->quote($comment_email).", ".$DB->quote($comment_url).",
".$DB->quote($comment_ip).", '$comment_date', ".$DB->quote($comment_content)." )" );
}
$message .= '<li>Comment from '.$comment_author.' added.</li>';
$count_commentscreated++;
}
}
if( !empty($message) )
{
echo '<ul>'.$message.'</ul>';
}
}
// Finally the pings
// fix the double newline on the first one
if( count($pings) )
{
$message = '';
$pings[0] = str_replace("-----\n\n", "-----\n", $pings[0]);
$pings = explode("-----\nPING:", $pings[0]);
foreach( $pings as $ping )
{
$ping = trim($ping);
if( empty($ping) ) continue;
$comment_author = ripline( 'BLOG NAME:', $ping );
$comment_email = '';
$comment_ip = ripline( 'IP:', $ping );
$comment_url = ripline( 'URL:', $ping );
$comment_date = date('Y-m-d H:i:s', strtotime( ripline( 'DATE:', $ping )));
$ping_title = ripline( 'TITLE:', $ping );
$comment_content = preg_replace("/\n*-----$/", '', $ping);
$comment_content = "<strong>$ping_title</strong><br />$comment_content";
// Check if it's already there
if (!$DB->get_row("SELECT * FROM $tablecomments WHERE comment_date = '$comment_date' AND comment_type = 'trackback' AND comment_content = ".$DB->quote($comment_content)))
{
if( !$simulate )
{
$DB->query( "INSERT INTO $tablecomments
(comment_post_ID, comment_type, comment_author, comment_author_email, comment_author_url,
comment_author_IP, comment_date, comment_content )
VALUES
($post_ID, 'trackback', ".$DB->quote($comment_author).", ".$DB->quote($comment_email).", ".$DB->quote($comment_url).",
".$DB->quote($comment_ip).", ".$DB->quote($comment_date).", ".$DB->quote($comment_content)." )" );
}
$message .= '<li>Trackback from '.$comment_url.' added.</li>';
$count_trackbackscreated++;
}
}
echo $message;
}
echo "</li>\n";
flush();
}
?>
</ol>
<h4>All done.<?php if( $simulate ) echo ' (simulated - no real import!)' ?></h4>
<ul>
<li><?php echo $count_postscreated ?> post(s) imported.</li>
<li><?php echo $count_userscreated ?> user(s) created.</li>
<li><?php echo $count_commentscreated ?> comment(s) imported.</li>
<li><?php echo $count_trackbackscreated ?> trackback(s) imported.</li>
<li>in <?php echo number_format(timer_stop(), 3) ?> seconds.</li>
</ul>
<?php
if( $simulate )
{
echo '
<form action="import-mt.php" method="post">
<p>
<strong>This was only simulated..</strong>
';
foreach( $_POST as $key => $value )
{
if( $key != 'simulate' )
{
if( is_array( $value ) )
{
foreach( $value as $key2 => $value2 )
{
echo '<input type="hidden" name="'.$key.'['.$key2.']" value="'.format_to_output( $value2, 'formvalue' ).'" />';
}
}
else
{
echo '<input type="hidden" name="'.$key.'" value="'.format_to_output( $value, 'formvalue' ).'" />';
}
}
}
echo '<input type="submit" value="Do it for real now!" /></p></form>'."\n";
}
?>
<p>
<a href="<?php echo $admin_dirout ?>">Have fun in your blogs</a> or <a href="<?php echo $admin_url ?>">go to admin</a> (it's fun there, too)
</p>
<?php
if( $count_userscreated )
{
echo '<p class="note">Please note that the new users being created are not member of any blog yet. You\'ll have to setup this in the <a href="'.$admin_url.'/b2blogs.php">blogs admin</a>.</p>';
}
?>
</div>
<?php
}
?>
<div class="panelinfo">
<p>
Feel free to <a href="http://thequod.de/contact">contact me</a> in case of suggestions, bugs and lack of clarity.
Of course, you're also welcome to <a href="https://sourceforge.net/donate/index.php?user_id=663176">donate to me</a> or <a href="http://sourceforge.net/donate/index.php?group_id=85535">the b2evolution project</a>.. :)
</p>
</div>
<div class="clear">
<?php if( $output_debug_dump ) $DB->dump_queries() ?>
</div>
</div>
</body>
</html>
<?php
/* ------ FUNCTIONS ------ */
function fieldset_cats()
{
global $cache_blogs, $cache_categories;
?>
<fieldset title="default categories set" style="background-color:#fafafa; border:1px solid #ccc; padding: 1em; display:inline; float:right; white-space:nowrap;">
<legend>Default categories set (only needed if you want to map categories to this)</legend>
<p class="extracatnote">
<?php
if( count( $cache_categories ) )
{
echo T_('Select main category in target blog and optionally check additional categories').':';
}
else
{
echo 'No categories in your blogs..';
}
?>
</p>
<?php
// ---------------------------- CATEGORIES ------------------------------
$default_main_cat = 0;
$blog = 1;
// ----------------- START RECURSIVE CAT LIST ----------------
cat_query( false ); // make sure the caches are loaded
function cat_select_before_first( $parent_cat_ID, $level )
{ // callback to start sublist
echo "\n<ul>\n";
}
function cat_select_before_each( $cat_ID, $level )
{ // callback to display sublist element
global $current_blog_ID, $blog, $cat, $postdata, $default_main_cat, $action, $tabindex, $allow_cross_posting;
$this_cat = get_the_category_by_ID( $cat_ID );
echo '<li>';
if( $allow_cross_posting )
{ // We allow cross posting, display checkbox:
echo'<input type="checkbox" name="post_extracats[]" class="checkbox" title="', T_('Select as an additionnal category') , '" value="',$cat_ID,'"';
echo ' />';
}
// Radio for main cat:
if( $current_blog_ID == $blog )
{
if( ($default_main_cat == 0) && ($action == 'post') )
{ // Assign default cat for new post
$default_main_cat = $cat_ID;
}
echo ' <input type="radio" name="post_category" class="checkbox" title="', T_('Select as MAIN category'), '" value="',$cat_ID,'"';
if( ($cat_ID == $postdata["Category"]) || ($cat_ID == $default_main_cat))
echo ' checked="checked"';
echo ' />';
}
echo ' '.$this_cat['cat_name'];
}
function cat_select_after_each( $cat_ID, $level )
{ // callback after each sublist element
echo "</li>\n";
}
function cat_select_after_last( $parent_cat_ID, $level )
{ // callback to end sublist
echo "</ul>\n";
}
// go through all blogs with cats:
foreach( $cache_blogs as $i_blog )
{ // run recursively through the cats
$current_blog_ID = $i_blog->blog_ID;
if( ! blog_has_cats( $current_blog_ID ) ) continue;
#if( ! $current_User->check_perm( 'blog_post_statuses', 'any', false, $current_blog_ID ) ) continue;
echo "<h4>".$i_blog->blog_name."</h4>\n";
cat_children( $cache_categories, $current_blog_ID, NULL, 'cat_select_before_first',
'cat_select_before_each', 'cat_select_after_each', 'cat_select_after_last', 1 );
}
// ----------------- END RECURSIVE CAT LIST ----------------
?>
</fieldset>
<?php
}
/*
-- Category options list --
*/
function cats_optionslist( $forcat )
{
global $cache_categories, $cache_blogs, $cache_optionslist;
if( !isset($cache_optionslist) )
{
$cache_optionslist = '';
foreach( $cache_blogs as $i_blog )
{
$cache_optionslist .= '<option value="#NEW#'.$i_blog->blog_ID.'">[-- create in blog '.$i_blog->blog_shortname.' --]:</option>';
cat_children2( $cache_categories, $i_blog->blog_ID, NULL, 1 );
}
}
$cat_id = false;
foreach( $cache_categories as $key => $value )
{
if( $value['cat_name'] == $forcat )
{
$cat_id = $key;
break;
}
}
if( is_int($cat_id) )
{
echo str_replace( '<option value="'.$cat_id.'">', '<option value="'.$cat_id.'" selected="selected">', $cache_optionslist );
}
else
{
echo $cache_optionslist;
}
}
function cat_children2(
$ccats, // PHP requires this stupid cloning of the cache_categories array in order to be able to perform foreach on it
$blog_ID,
$parent_ID,
$level = 0 ) // Caller nesting level, just to keep track of how far we go :)
{
global $cache_optionslist;
// echo 'Number of cats=', count($ccats);
if( ! empty( $ccats ) ) // this can happen if there are no cats at all!
{
$child_count = 0;
foreach( $ccats as $icat_ID => $i_cat )
{
if( $icat_ID && (($blog_ID == 0) || ($i_cat['cat_blog_ID'] == $blog_ID)) && ($i_cat['cat_parent_ID'] == $parent_ID) )
{ // this cat is in the blog and is a child of the parent
$child_count++;
$cache_optionslist .= '<option value="'.$icat_ID.'">';
for( $i = 0; $i < $level; $i++ )
{
$cache_optionslist .= '-';
}
$cache_optionslist .= '> '.format_to_output( $ccats[ $icat_ID ]['cat_name'], 'entityencoded' ).'</option>';
cat_children2( $ccats, $blog_ID, $icat_ID, $level+1 );
}
}
}
}
/**
* extracts unique authors and cats from posts array
*/
function import_data_extract_authors_cats()
{
global $authors, $categories, $posts;
global $exportedfile;
global $categories_countprim;
global $importdata;
global $mode;
$fp = fopen( $exportedfile, 'rb');
$buffer = fread($fp, filesize( $exportedfile ));
fclose($fp);
if( !preg_match( '/^AUTHOR: /', $buffer ) )
{
dieerror("The file [$exportedfile] does not seem to be a MT exported file.. ".'[<a href="import-mt.php?mode='.$mode.'">choose another export-file</a>]');
}
$importdata = preg_replace( "/\r?\n|\r/", "\n", $buffer );
$posts = preg_split( '/(^|--------\n)(AUTHOR: |$)/', $importdata );
$authors = array(); $tempauthors = array();
$categories = array(); $tempcategories = array();
foreach ($posts as $nr => $post)
{
if ('' != trim($post))
{
// first line is author of post
$tempauthors[] = trim( substr( $post, 0, strpos( $post, "\n", 1 ) ) );
$oldcatcount = count( $tempcategories );
if( preg_match_all( "/^(PRIMARY )?CATEGORY: (.*)/m", $post, $matches ) )
{
for( $i = 1; $i < count( $matches[2] ); $i++ )
{
$cat = trim( $matches[2][$i] );
if( !empty( $cat ) ) $tempcategories[] = $cat;
}
// main category last (-> counter)
if( !empty($matches[2][0]) ) $tempcategories[] = $matches[2][0];
}
if( $oldcatcount == count( $tempcategories ) )
{
$tempcategories[] = '[no category assigned]';
}
// remember how many times used as primary category
@$categories_countprim[ $tempcategories[ count( $tempcategories )-1 ] ]++;
}
else
{
unset( $posts[ $nr ] );
}
}
// we need to find unique values of author names, while preserving the order, so this function emulates the unique_value(); php function, without the sorting.
$authors[0] = array_shift($tempauthors);
$y = count($tempauthors) + 1;
for ($x = 1; $x < $y; $x++)
{
$next = array_shift($tempauthors);
if( !(in_array($next,$authors)) ) $authors[] = $next;
}
$categories[0] = array_shift( $tempcategories );
$y = count($tempcategories) + 1;
for ($x = 1; $x < $y; $x++)
{
$next = array_shift($tempcategories);
if( !(in_array($next, $categories)) ) $categories[] = $next;
}
}
/**
* Outputs a list of available renderers (not necessarily installed).
*/
function renderer_list()
{
global $Renderer, $renderers;
$renderers = array('default');
$Renderer->restart(); // make sure iterator is at start position
while( $loop_RendererPlugin = $Renderer->get_next() )
{ // Go through whole list of renders
// echo ' ',$loop_RendererPlugin->code;
if( $loop_RendererPlugin->apply_when == 'stealth'
|| $loop_RendererPlugin->apply_when == 'never' )
{ // This is not an option.
continue;
}
elseif( $loop_RendererPlugin->code == 'b2WPAutP' )
{ // special Auto-P plugin
?>
<div class="input">
<label for="textile" title="<?php $loop_RendererPlugin->short_desc(); ?>"><strong><?php echo $loop_RendererPlugin->name() ?>:</strong></label>
<div style="margin-left:2ex" />
<input type="radio" name="autop" value="1" class="checkbox" checked="checked" /> yes (always)<br>
<input type="radio" name="autop" value="0" class="checkbox" /> no (never)<br>
<input type="radio" name="autop" value="depends" class="checkbox" /> depends on CONVERT BREAKS
<span class="notes"> ..that means it will apply if convert breaks results to true (set to either 1, textile_2 or __DEFAULT__ (and "Convert-breaks default" checked above)</span>
</div>
</div>
<?php
continue;
}
?>
<div>
<input type="checkbox" class="checkbox" name="renderers[]"
value="<?php $loop_RendererPlugin->code() ?>" id="<?php $loop_RendererPlugin->code() ?>"
<?php
switch( $loop_RendererPlugin->apply_when )
{
case 'always':
// echo 'FORCED';
echo ' checked="checked"';
echo ' disabled="disabled"';
break;
case 'opt-out':
if( in_array( $loop_RendererPlugin->code, $renderers ) // Option is activated
|| in_array( 'default', $renderers ) ) // OR we're asking for default renderer set
{
// echo 'OPT';
echo ' checked="checked"';
}
// else echo 'NO';
break;
case 'opt-in':
if( in_array( $loop_RendererPlugin->code, $renderers ) ) // Option is activated
{
// echo 'OPT';
echo ' checked="checked"';
}
// else echo 'NO';
break;
case 'lazy':
// cannot select
if( in_array( $loop_RendererPlugin->code, $renderers ) ) // Option is activated
{
// echo 'OPT';
echo ' checked="checked"';
}
echo ' disabled="disabled"';
break;
}
?>
title="<?php $loop_RendererPlugin->short_desc(); ?>" />
<label for="<?php $loop_RendererPlugin->code() ?>" title="<?php $loop_RendererPlugin->short_desc(); ?>"><strong><?php echo $loop_RendererPlugin->name(); ?></strong></label>
</div>
<?php
}
}
/**
* Die with a message.
*
* @param string the message (wrapped in div and p tag of class error)
* @param string optional head
*/
function dieerror( $message, $before = '' )
{
if( !empty($before) )
echo $before;
die( '<div class="error"><p class="error">'.$message.'</p></div>
</div></body></html>' );
}
function debug_dump( $var, $title = '' )
{
global $output_debug_dump;
if( $output_debug_dump )
{
pre_dump( $var, $title );
}
}
function chooseexportfile()
{
global $exportedfile, $mode;
// Go through directory:
$this_dir = dir( dirname(__FILE__) );
$r = '';
while( $this_file = $this_dir->read() )
{
if( preg_match( '/^.+\.txt$/', $this_file ) )
{
$r .= '<option value="'.format_to_output( $this_file, 'formvalue' ).'"';
if( $exportedfile == $this_file ) $r .= ' selected="selected"';
$r .= '>'.format_to_output( $this_file, 'entityencoded' ).'</option>';
}
}
if( $r )
{
?>
<form action="import-mt.php" class="center">
<p>First, choose a file to import (.TXT files from /admin dir):</p>
<select name="exportedfile" onChange="submit()">
<?php echo $r ?>
</select>
<input type="hidden" name="mode" value="<?php echo $mode ?>" />
<input type="submit" value="Next step..." class="search" />
</form>
<?php
}
else
{ // no file found
?>
<div class="error">
<p class="center">No .TXT file found in /admin. Nothing to import...</p>
<p class="center">Please copy your Movable Type .TXT export file to the /admin directory.</p>
</div>
<?php
}
}
function ripline( $prefix, &$haystack )
{
if( preg_match( '|^'.$prefix.'(.*)|m', $haystack, $match ) )
{
$haystack = preg_replace('|^'.$prefix.".*\n?|m", '', $haystack );
return trim( $match[1] );
}
else return false;
}
function tidypostdata( $string )
{
return str_replace( array('"', ''', '<', '>'), array('"', "'", '<', '>'), remove_magic_quotes( $string ) );
}
?>
|