dever 6 years ago
parent
commit
e6589f387f
2 changed files with 57 additions and 0 deletions
  1. 8 0
      combine/index.php
  2. 49 0
      combine/lib/Core.php

+ 8 - 0
combine/index.php

@@ -0,0 +1,8 @@
+<?php
+
+define('DEVER_APP_NAME', 'combine');
+define('DEVER_APP_LANG', '合并用户工具');
+define('DEVER_APP_PATH', dirname(__FILE__) . DIRECTORY_SEPARATOR);
+define('DEVER_MANAGE_ORDER', -100);
+define('DEVER_MANAGE_ICON', 'glyphicon glyphicon-tower layui-icon-tabs');
+include(DEVER_APP_PATH . '../boot.php');

+ 49 - 0
combine/lib/Core.php

@@ -0,0 +1,49 @@
+<?php
+
+namespace Combine\Lib;
+
+use Dever;
+
+class Core
+{
+
+    # 合并用户数据
+    public function handle($uid, $drop)
+    {
+        $table = array
+        (
+            'passport/app',
+            'passport/wechat',
+            'act/comment',
+            'act/form_id',
+            'act/invite',
+            'act/like',
+            'act/live_comment',
+            'act/live_note',
+            //'act/score',//积分相关的要加上,不能直接修改
+            'act/share',
+            'act/share_reflux',
+            'act/subscribe',
+            'act/watch',
+            'code/info',
+            'source/user',
+            'score/action_log',
+            //'score/user',//积分
+            //'score/user_level',//等级
+            'score/user_log',//积分日志
+            'message/inbox',
+            'invite/relation',
+            'pay/order',
+            'journal/order',
+        );
+        foreach ($drop as $k => $v) {
+            foreach ($table as $k1 => $v1) {
+                Dever::db($v1)->updates(array('set_uid' => $uid, 'option_uid' => $v));
+            }
+            Dever::db('code/info')->updates(array('set_create_uid' => $uid, 'option_create_uid' => $v));
+            Dever::db('invite/relation')->updates(array('set_to_uid' => $uid, 'option_to_uid' => $v));
+
+            # 积分相关 要把积分加上,再删掉之前的
+        }
+    }
+}