mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 00:12:18 +08:00 
			
		
		
		
	* fix: to start im or chat, ZooKeeper must be started first. * fix: msg gateway start output err info Signed-off-by: Gordon <1432970085@qq.com> * fix: msg gateway start output err info Signed-off-by: Gordon <1432970085@qq.com> * chore: package path changes Signed-off-by: withchao <993506633@qq.com> * fix: go mod update Signed-off-by: Gordon <1432970085@qq.com> * fix: token update Signed-off-by: Gordon <1432970085@qq.com> * chore: package path changes Signed-off-by: withchao <993506633@qq.com> * chore: package path changes Signed-off-by: withchao <993506633@qq.com> * fix: token update Signed-off-by: Gordon <1432970085@qq.com> * fix: token update Signed-off-by: Gordon <1432970085@qq.com> * fix: token update Signed-off-by: Gordon <1432970085@qq.com> * fix: token update Signed-off-by: Gordon <1432970085@qq.com> * fix: token update Signed-off-by: Gordon <1432970085@qq.com> --------- Signed-off-by: Gordon <1432970085@qq.com> Signed-off-by: withchao <993506633@qq.com> Co-authored-by: withchao <993506633@qq.com>
		
			
				
	
	
		
			131 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			3.0 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 msggateway
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 	"strconv"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/OpenIMSDK/protocol/constant"
 | |
| 	"github.com/OpenIMSDK/tools/utils"
 | |
| )
 | |
| 
 | |
| type UserConnContext struct {
 | |
| 	RespWriter http.ResponseWriter
 | |
| 	Req        *http.Request
 | |
| 	Path       string
 | |
| 	Method     string
 | |
| 	RemoteAddr string
 | |
| 	ConnID     string
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) Deadline() (deadline time.Time, ok bool) {
 | |
| 	return
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) Done() <-chan struct{} {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) Err() error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) Value(key any) any {
 | |
| 	switch key {
 | |
| 	case constant.OpUserID:
 | |
| 		return c.GetUserID()
 | |
| 	case constant.OperationID:
 | |
| 		return c.GetOperationID()
 | |
| 	case constant.ConnID:
 | |
| 		return c.GetConnID()
 | |
| 	case constant.OpUserPlatform:
 | |
| 		return constant.PlatformIDToName(utils.StringToInt(c.GetPlatformID()))
 | |
| 	case constant.RemoteAddr:
 | |
| 		return c.RemoteAddr
 | |
| 	default:
 | |
| 		return ""
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func newContext(respWriter http.ResponseWriter, req *http.Request) *UserConnContext {
 | |
| 	return &UserConnContext{
 | |
| 		RespWriter: respWriter,
 | |
| 		Req:        req,
 | |
| 		Path:       req.URL.Path,
 | |
| 		Method:     req.Method,
 | |
| 		RemoteAddr: req.RemoteAddr,
 | |
| 		ConnID:     utils.Md5(req.RemoteAddr + "_" + strconv.Itoa(int(utils.GetCurrentTimestampByMill()))),
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) GetRemoteAddr() string {
 | |
| 	return c.RemoteAddr
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) Query(key string) (string, bool) {
 | |
| 	var value string
 | |
| 	if value = c.Req.URL.Query().Get(key); value == "" {
 | |
| 		return value, false
 | |
| 	}
 | |
| 	return value, true
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) GetHeader(key string) (string, bool) {
 | |
| 	var value string
 | |
| 	if value = c.Req.Header.Get(key); value == "" {
 | |
| 		return value, false
 | |
| 	}
 | |
| 	return value, true
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) SetHeader(key, value string) {
 | |
| 	c.RespWriter.Header().Set(key, value)
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) ErrReturn(error string, code int) {
 | |
| 	http.Error(c.RespWriter, error, code)
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) GetConnID() string {
 | |
| 	return c.ConnID
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) GetUserID() string {
 | |
| 	return c.Req.URL.Query().Get(WsUserID)
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) GetPlatformID() string {
 | |
| 	return c.Req.URL.Query().Get(PlatformID)
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) GetOperationID() string {
 | |
| 	return c.Req.URL.Query().Get(OperationID)
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) GetToken() string {
 | |
| 	return c.Req.URL.Query().Get(Token)
 | |
| }
 | |
| 
 | |
| func (c *UserConnContext) GetBackground() bool {
 | |
| 	b, err := strconv.ParseBool(c.Req.URL.Query().Get(BackgroundStatus))
 | |
| 	if err != nil {
 | |
| 		return false
 | |
| 	} else {
 | |
| 		return b
 | |
| 	}
 | |
| }
 |