mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 08:29:33 +08:00 
			
		
		
		
	* docs: add openim docs Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * docs: add openim images test Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: fix openim ci and deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: fix openim ci and deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim flag api configpath env set Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix openim push logger Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix openim config path Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix openim config path Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix openim config path Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright © 2023 OpenIM. All rights reserved.
 | |
| //
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| //     http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| package main
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"log"
 | |
| 
 | |
| 	"gorm.io/driver/mysql"
 | |
| 	"gorm.io/gorm"
 | |
| 	"gorm.io/gorm/logger"
 | |
| 
 | |
| 	"github.com/openimsdk/open-im-server/v3/tools/data-conversion/openim/mysql/conversion"
 | |
| 	"github.com/openimsdk/open-im-server/v3/tools/data-conversion/utils"
 | |
| )
 | |
| 
 | |
| func main() {
 | |
| 	var (
 | |
| 		usernameV2 = "root"            // v2版本mysql用户名
 | |
| 		passwordV2 = "openIM"          // v2版本mysql密码
 | |
| 		addrV2     = "127.0.0.1:13306" // v2版本mysql地址
 | |
| 		databaseV2 = "openIM_v2"       // v2版本mysql数据库名字
 | |
| 	)
 | |
| 
 | |
| 	var (
 | |
| 		usernameV3 = "root"            // v3版本mysql用户名
 | |
| 		passwordV3 = "openIM123"       // v3版本mysql密码
 | |
| 		addrV3     = "127.0.0.1:13306" // v3版本mysql地址
 | |
| 		databaseV3 = "openIM_v3"       // v3版本mysql数据库名字
 | |
| 	)
 | |
| 
 | |
| 	var concurrency = 1 // 并发数量
 | |
| 
 | |
| 	log.SetFlags(log.LstdFlags | log.Llongfile)
 | |
| 	dsnV2 := fmt.Sprintf("%s:%s@tcp(%s)/%s?charset=utf8mb4&parseTime=True&loc=Local", usernameV2, passwordV2, addrV2, databaseV2)
 | |
| 	dsnV3 := fmt.Sprintf("%s:%s@tcp(%s)/%s?charset=utf8mb4&parseTime=True&loc=Local", usernameV3, passwordV3, addrV3, databaseV3)
 | |
| 	dbV2, err := gorm.Open(mysql.Open(dsnV2), &gorm.Config{Logger: logger.Discard})
 | |
| 	if err != nil {
 | |
| 		log.Println("open v2 db failed", err)
 | |
| 		return
 | |
| 	}
 | |
| 	dbV3, err := gorm.Open(mysql.Open(dsnV3), &gorm.Config{Logger: logger.Discard})
 | |
| 	if err != nil {
 | |
| 		log.Println("open v3 db failed", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	var tasks utils.TakeList
 | |
| 
 | |
| 	tasks.Append(func() (string, error) { return utils.FindAndInsert(dbV2, dbV3, conversion.Friend) })
 | |
| 	tasks.Append(func() (string, error) { return utils.FindAndInsert(dbV2, dbV3, conversion.FriendRequest) })
 | |
| 	tasks.Append(func() (string, error) { return utils.FindAndInsert(dbV2, dbV3, conversion.Group) })
 | |
| 	tasks.Append(func() (string, error) { return utils.FindAndInsert(dbV2, dbV3, conversion.GroupMember) })
 | |
| 	tasks.Append(func() (string, error) { return utils.FindAndInsert(dbV2, dbV3, conversion.GroupRequest) })
 | |
| 	tasks.Append(func() (string, error) { return utils.FindAndInsert(dbV2, dbV3, conversion.User) })
 | |
| 
 | |
| 	utils.RunTask(concurrency, tasks)
 | |
| 
 | |
| }
 |