| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
require_once('admin.php'); |
|---|
| 6 |
$parent_file = 'link-manager.php'; |
|---|
| 7 |
$title = __('Import Blogroll'); |
|---|
| 8 |
$this_file = 'link-import.php'; |
|---|
| 9 |
|
|---|
| 10 |
$step = $_POST['step']; |
|---|
| 11 |
if (!$step) $step = 0; |
|---|
| 12 |
?> |
|---|
| 13 |
<?php |
|---|
| 14 |
switch ($step) { |
|---|
| 15 |
case 0: |
|---|
| 16 |
{ |
|---|
| 17 |
include_once('admin-header.php'); |
|---|
| 18 |
if ( !current_user_can('manage_links') ) |
|---|
| 19 |
die (__("Cheatin’ uh?")); |
|---|
| 20 |
|
|---|
| 21 |
$opmltype = 'blogrolling'; |
|---|
| 22 |
?> |
|---|
| 23 |
|
|---|
| 24 |
<div class="wrap"> |
|---|
| 25 |
<h2><?php _e('Import your blogroll from another system') ?> </h2> |
|---|
| 26 |
<form enctype="multipart/form-data" action="link-import.php" method="post" name="blogroll"> |
|---|
| 27 |
<?php wp_nonce_field('import-bookmarks') ?> |
|---|
| 28 |
|
|---|
| 29 |
<p><?php _e('If a program or website you use allows you to export your links or subscriptions as OPML you may import them here.'); ?></p> |
|---|
| 30 |
<div style="width: 70%; margin: auto; height: 8em;"> |
|---|
| 31 |
<input type="hidden" name="step" value="1" /> |
|---|
| 32 |
<input type="hidden" name="MAX_FILE_SIZE" value="30000" /> |
|---|
| 33 |
<div style="width: 48%; float: left;"> |
|---|
| 34 |
<h3><?php _e('Specify an OPML URL:'); ?></h3> |
|---|
| 35 |
<input type="text" name="opml_url" size="50" style="width: 90%;" value="http://" /> |
|---|
| 36 |
</div> |
|---|
| 37 |
|
|---|
| 38 |
<div style="width: 48%; float: left;"> |
|---|
| 39 |
<h3><?php _e('Or choose from your local disk:'); ?></h3> |
|---|
| 40 |
<input id="userfile" name="userfile" type="file" size="30" /> |
|---|
| 41 |
</div> |
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
</div> |
|---|
| 45 |
|
|---|
| 46 |
<p style="clear: both; margin-top: 1em;"><?php _e('Now select a category you want to put these links in.') ?><br /> |
|---|
| 47 |
<?php _e('Category:') ?> <select name="cat_id"> |
|---|
| 48 |
<?php |
|---|
| 49 |
$categories = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle FROM $wpdb->linkcategories ORDER BY cat_id"); |
|---|
| 50 |
foreach ($categories as $category) { |
|---|
| 51 |
?> |
|---|
| 52 |
<option value="<?php echo $category->cat_id; ?>"><?php echo $category->cat_id.': '.$category->cat_name; ?></option> |
|---|
| 53 |
<?php |
|---|
| 54 |
} |
|---|
| 55 |
?> |
|---|
| 56 |
</select></p> |
|---|
| 57 |
|
|---|
| 58 |
<p class="submit"><input type="submit" name="submit" value="<?php _e('Import OPML File') ?> »" /></p> |
|---|
| 59 |
</form> |
|---|
| 60 |
|
|---|
| 61 |
</div> |
|---|
| 62 |
<?php |
|---|
| 63 |
break; |
|---|
| 64 |
} |
|---|
| 65 |
|
|---|
| 66 |
case 1: { |
|---|
| 67 |
check_admin_referer('import-bookmarks'); |
|---|
| 68 |
|
|---|
| 69 |
include_once('admin-header.php'); |
|---|
| 70 |
if ( !current_user_can('manage_links') ) |
|---|
| 71 |
die (__("Cheatin' uh ?")); |
|---|
| 72 |
?> |
|---|
| 73 |
<div class="wrap"> |
|---|
| 74 |
|
|---|
| 75 |
<h2><?php _e('Importing...') ?></h2> |
|---|
| 76 |
<?php |
|---|
| 77 |
$cat_id = abs( (int) $_POST['cat_id'] ); |
|---|
| 78 |
if ( $cat_id < 1 ) |
|---|
| 79 |
$cat_id = 1; |
|---|
| 80 |
|
|---|
| 81 |
$opml_url = $_POST['opml_url']; |
|---|
| 82 |
if (isset($opml_url) && $opml_url != '' && $opml_url != 'http://') { |
|---|
| 83 |
$blogrolling = true; |
|---|
| 84 |
} |
|---|
| 85 |
else |
|---|
| 86 |
{ |
|---|
| 87 |
$overrides = array('test_form' => false, 'test_type' => false); |
|---|
| 88 |
$file = wp_handle_upload($_FILES['userfile'], $overrides); |
|---|
| 89 |
|
|---|
| 90 |
if ( isset($file['error']) ) |
|---|
| 91 |
die($file['error']); |
|---|
| 92 |
|
|---|
| 93 |
$url = $file['url']; |
|---|
| 94 |
$opml_url = $file['file']; |
|---|
| 95 |
$blogrolling = false; |
|---|
| 96 |
} |
|---|
| 97 |
|
|---|
| 98 |
if (isset($opml_url) && $opml_url != '') { |
|---|
| 99 |
$opml = wp_remote_fopen($opml_url); |
|---|
| 100 |
include_once('link-parse-opml.php'); |
|---|
| 101 |
|
|---|
| 102 |
$link_count = count($names); |
|---|
| 103 |
for ($i = 0; $i < $link_count; $i++) { |
|---|
| 104 |
if ('Last' == substr($titles[$i], 0, 4)) |
|---|
| 105 |
$titles[$i] = ''; |
|---|
| 106 |
if ('http' == substr($titles[$i], 0, 4)) |
|---|
| 107 |
$titles[$i] = ''; |
|---|
| 108 |
|
|---|
| 109 |
$query = "INSERT INTO $wpdb->links (link_url, link_name, link_target, link_category, link_description, link_owner, link_rss) |
|---|
| 110 |
VALUES('{$urls[$i]}', '".$wpdb->escape($names[$i])."', '', $cat_id, '".$wpdb->escape($descriptions[$i])."', $user_ID, '{$feeds[$i]}')\n"; |
|---|
| 111 |
$result = $wpdb->query($query); |
|---|
| 112 |
echo sprintf('<p>'.__('Inserted <strong>%s</strong>').'</p>', $names[$i]); |
|---|
| 113 |
} |
|---|
| 114 |
?> |
|---|
| 115 |
<p><?php printf(__('Inserted %1$d links into category %2$s. All done! Go <a href="%3$s">manage those links</a>.'), $link_count, $cat_id, 'link-manager.php') ?></p> |
|---|
| 116 |
<?php |
|---|
| 117 |
} |
|---|
| 118 |
else |
|---|
| 119 |
{ |
|---|
| 120 |
echo "<p>" . __("You need to supply your OPML url. Press back on your browser and try again") . "</p>\n"; |
|---|
| 121 |
} |
|---|
| 122 |
|
|---|
| 123 |
if ( ! $blogrolling ) |
|---|
| 124 |
@unlink($opml_url); |
|---|
| 125 |
?> |
|---|
| 126 |
</div> |
|---|
| 127 |
<?php |
|---|
| 128 |
break; |
|---|
| 129 |
} |
|---|
| 130 |
} |
|---|
| 131 |
|
|---|
| 132 |
include('admin-footer.php'); |
|---|
| 133 |
|
|---|
| 134 |
?> |
|---|
| 135 |
|
|---|