From 8ff9ad76365eced6dd466c491148381dae677a6c Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 11 Feb 2017 20:52:06 -0500 Subject: Webpage import tool works again after setting iconfig properly and following the Impel class function example. More testing is needed. --- Zotlabs/Module/Webpages.php | 1 + include/import.php | 33 +++++++++++++++++++-------------- 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index 46b94f091..a6ca77809 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -288,6 +288,7 @@ class Webpages extends \Zotlabs\Web\Controller { if ($zip->open($source) === true) { $tmp_folder_name = random_string(5); $website = dirname($source) . '/' . $tmp_folder_name; + logger($website ,LOGGER_DEBUG); $zip->extractTo($website); // change this to the correct site path $zip->close(); @unlink($source); // delete the compressed file now that the content has been extracted diff --git a/include/import.php b/include/import.php index d48995a79..07215264e 100644 --- a/include/import.php +++ b/include/import.php @@ -1295,6 +1295,7 @@ function import_webpage_element($element, $channel, $type) { // LAYOUTS // case 'layout': + logger('Importing layout...', LOGGER_DEBUG); $arr['item_type'] = ITEM_TYPE_PDL; $namespace = 'PDL'; $name = $element['name']; @@ -1315,7 +1316,7 @@ function import_webpage_element($element, $channel, $type) { return null; // return null if invalid element type } - $arr['uid'] = $channel['channel_id']; + $arr['uid'] = local_channel(); $arr['aid'] = $channel['channel_account_id']; // Check if an item already exists based on the name @@ -1376,36 +1377,40 @@ function import_webpage_element($element, $channel, $type) { } } - $z = q("select * from iconfig where v = '%s' and k = '%s' and cat = 'system' limit 1", - dbesc($name), - dbesc($namespace) - ); +// $z = q("select * from iconfig where v = '%s' and k = '%s' and cat = 'system' limit 1", +// dbesc($name), +// dbesc($namespace) +// ); $i = q("select id, edited, item_deleted from item where mid = '%s' and uid = %d limit 1", dbesc($arr['mid']), intval(local_channel()) ); - $remote_id = 0; - if($z && $i) { - $remote_id = $z[0]['id']; + + \Zotlabs\Lib\IConfig::Set($arr,'system',$namespace,(($name) ? $name : substr($arr['mid'],0,16)),true); + + + if($i) { $arr['id'] = $i[0]['id']; // don't update if it has the same timestamp as the original if($arr['edited'] > $i[0]['edited']) - $x = item_store_update($arr, $execflag); + $x = item_store_update($arr,$execflag); } else { if(($i) && (intval($i[0]['item_deleted']))) { // was partially deleted already, finish it off - q("delete from item where mid = '%s' and uid = %d", - dbesc($arr['mid']), + q("delete from item where mid = '%s' and uid = %d", + dbesc($arr['mid']), intval(local_channel()) ); } - $x = item_store($arr, $execflag); + else + $x = item_store($arr,$execflag); } - if($x['success']) { + + if($x && $x['success']) { $item_id = $x['item_id']; - update_remote_id($channel, $item_id, $arr['item_type'], $name, $namespace, $remote_id, $arr['mid']); + //update_remote_id($channel, $item_id, $arr['item_type'], $name, $namespace, $remote_id, $arr['mid']); $element['import_success'] = 1; } else { -- cgit v1.2.3 From 0017de46e4e696aaa2180ca47aac9b4996493cc8 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 11 Feb 2017 20:54:09 -0500 Subject: remove logger lines --- Zotlabs/Module/Webpages.php | 1 - include/import.php | 1 - 2 files changed, 2 deletions(-) diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index a6ca77809..46b94f091 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -288,7 +288,6 @@ class Webpages extends \Zotlabs\Web\Controller { if ($zip->open($source) === true) { $tmp_folder_name = random_string(5); $website = dirname($source) . '/' . $tmp_folder_name; - logger($website ,LOGGER_DEBUG); $zip->extractTo($website); // change this to the correct site path $zip->close(); @unlink($source); // delete the compressed file now that the content has been extracted diff --git a/include/import.php b/include/import.php index 07215264e..5c73b7ca3 100644 --- a/include/import.php +++ b/include/import.php @@ -1295,7 +1295,6 @@ function import_webpage_element($element, $channel, $type) { // LAYOUTS // case 'layout': - logger('Importing layout...', LOGGER_DEBUG); $arr['item_type'] = ITEM_TYPE_PDL; $namespace = 'PDL'; $name = $element['name']; -- cgit v1.2.3