欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

轻松实现织梦网站数据迁移到新站点

程序员文章站 2022-03-07 18:23:37
...

众所周知,织梦已经开始收费了,这对国内版权意识增强应该不算坏事,但想要免费使用又不想惹麻烦的站长们就有点麻烦了。

有不少朋友来问,我们 MyCms 支不支持织梦数据迁移,目前我们已经实现一键导入织梦的原文章和商品了,现在简要讲述一下实现过程。

一、连接数据库

要想实现数据的迁移导入,那么先要得到数据库信息,所以我们第一步就要实现填写数据库信息功能。

轻松实现织梦网站数据迁移到新站点

可以打开织梦网站的 data/common.inc.php 文件对照填写。

单次导入数据字段为执行一次导入多少量的数据,默认100条,这个可以依照自己的服务器来调整。

这一步仅仅是保存数据库信息,别无他用。

附上连接数据库代码

  1. //$this->config 为保存的数据库信息
  2. $dedeConnection = array_merge([
  3. 'driver' => 'mysql',
  4. 'charset' => 'utf8',
  5. 'collation' => 'utf8_unicode_ci',
  6. 'prefix' => $this->config['dede_prefix'],
  7. ], $this->config);
  8. config(['database.connections.dedecms' => $dedeConnection]);
  9. $this->connection = DB::connection('dedecms');

二、导入分类/文章

1.导入文章分类,并明确上下级关系。

  1. public function articleCategory()
  2. {
  3. if (!Storage::exists("dede_article_category")) {
  4. //导入分类
  5. $categories = $this->connection
  6. ->table('arctype')->get();
  7. $catArray = $catParentArray = [];
  8. foreach ($categories as $category) {
  9. $cid = ArticleCategory::insert([
  10. 'pid' => 0,
  11. 'name' => $category->typename,
  12. ]);
  13. $catArray[$category->id] = $cid;
  14. $catParentArray[$cid] = $category->topid;
  15. }
  16. foreach ($catParentArray as $key => $value) {
  17. if ($value > 0) {
  18. $ac = ArticleCategory::find($key);
  19. $ac->pid = $catArray[$value];
  20. $ac->save();
  21. }
  22. }
  23. Storage::put("dede_article_category", json_encode($catArray));
  24. } else {
  25. $catArray = json_decode(Storage::get("dede_article_category"), true);
  26. }
  27. return $catArray;
  28. }

2.要先明确要导入文章的那些信息,然后对应好自身系统的字段,开始导入。

附上 MyCms 导入的代码给大家参考。

  1. public function article(): JsonResponse
  2. {
  3. $date = date('Y-m-d H:i:s');
  4. //最后导入ID
  5. $lastId = Storage::exists("dede_article_last_id") ? Storage::get("dede_article_last_id") : 0;
  6. $articles = $this->connection
  7. ->table('archives')
  8. ->leftJoin('addonarticle', 'aid', '=', 'id')
  9. ->where([
  10. ['channel', '=', 1],
  11. ['id', '>', $lastId],
  12. ])->limit($this->config['batch_number'])->get();
  13. $importLog = [];
  14. $catArray = $this->articleCategory();
  15. foreach ($articles as $article) {
  16. $aid = Article::insert([
  17. 'category_id' => $catArray[$article->typeid],
  18. 'title' => $article->title,
  19. 'content' => $article->body,
  20. 'description' => $article->description,
  21. 'img' => $article->litpic,
  22. 'author' => $article->writer,
  23. 'view' => $article->click,
  24. 'created_at' => date('Y-m-d H:i:s', $article->senddate),
  25. 'updated_at' => date('Y-m-d H:i:s', $article->pubdate),
  26. ]);
  27. if ($article->shorttitle) {
  28. $meta = [
  29. 'article_id' => $aid,
  30. 'meta_key' => 'short_title',
  31. 'meta_value' => $article->shorttitle,
  32. ];
  33. ArticleMeta::insert($meta);
  34. }
  35. $lastId = $article->id;
  36. $tagIds = (new ArticleTag)->insertTags(explode(",", trim($article->keywords, ",")));
  37. (new ArticleTagRel)->insertRel($aid, $tagIds);
  38. //导入记录
  39. $importLog[] = [
  40. 'type' => '文章',
  41. 'oid' => $article->id,
  42. 'mid' => $aid,
  43. 'title' => $article->title,
  44. 'created_at' => $date,
  45. 'updated_at' => $date,
  46. ];
  47. }
  48. Dedecms::insertAll($importLog);
  49. //写入导入最后ID
  50. Storage::put("dede_article_last_id", $lastId);
  51. return $this->result(true);
  52. }

三、导入商品

导入商品也是一样的道理,就不多少,直接附上代码。

  1. public function goods()
  2. {
  3. $date = date('Y-m-d H:i:s');
  4. $lastId = Storage::exists("dede_goods_last_id") ? Storage::get("dede_goods_last_id") : 0;
  5. $articles = $this->connection
  6. ->table('archives')
  7. ->leftJoin('addonshop', 'aid', '=', 'id')
  8. ->where([
  9. ['channel', '=', 6],
  10. ['id', '>', $lastId],
  11. ])->limit($this->config['batch_number'])->get();
  12. $importLog = [];
  13. $catArray = $this->goodsCategory();
  14. foreach ($articles as $article) {
  15. $aid = Goods::insert([
  16. 'category_id' => $catArray[$article->typeid],
  17. 'goods_name' => $article->title,
  18. 'content' => $article->body,
  19. 'description' => $article->description,
  20. 'goods_image' => $article->litpic,
  21. 'view' => $article->click,
  22. 'shop_price' => $article->trueprice ?: $article->price,
  23. 'market_price' => $article->price,
  24. 'created_at' => date('Y-m-d H:i:s', $article->senddate),
  25. 'updated_at' => date('Y-m-d H:i:s', $article->pubdate),
  26. ]);
  27. if ($article->shorttitle) {
  28. $meta = [
  29. 'goods_id' => $aid,
  30. 'meta_key' => 'short_title',
  31. 'meta_value' => $article->shorttitle,
  32. ];
  33. GoodsMeta::insert($meta);
  34. }
  35. $lastId = $article->id;
  36. $importLog[] = [
  37. 'type' => '商品',
  38. 'oid' => $article->id,
  39. 'mid' => $aid,
  40. 'title' => $article->title,
  41. 'created_at' => $date,
  42. 'updated_at' => $date,
  43. ];
  44. }
  45. Dedecms::insertAll($importLog);
  46. Storage::put("dede_goods_last_id", $lastId);
  47. return $this->result(true);
  48. }

最后导入成功,并记录下来。

轻松实现织梦网站数据迁移到新站点