mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 11:22:10 +08:00 
			
		
		
		
	* feat: add get_group_member_user_id api * feat: add SendBusinessNotification api * feat: add GetFriendIDs api * update pkg * feat: cos oss thumbnail * feat: cos video snapshot * feat: oss video snapshot * feat: minio video snapshot * feat: minio video snapshot * feat: minio * feat: minio * feat: minio * feat: s3 AccessURL * feat: s3 AccessURL * fix: Minio AccessURL * fix: Minio AccessURL * fix: optimize thumbnails * fix: optimize thumbnails * fix: cos option * fix: cos option * fix: cos option * docs: config * docs: config * minio: preview image cache * minio: preview image cache * minio: preview image cache * go mod tidy * cicd: robot automated Change Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: withchao <withchao@users.noreply.github.com>
		
			
				
	
	
		
			185 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			185 lines
		
	
	
		
			5.7 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 third
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"strconv"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/s3"
 | 
						|
 | 
						|
	"github.com/OpenIMSDK/protocol/third"
 | 
						|
	"github.com/OpenIMSDK/tools/errs"
 | 
						|
	"github.com/OpenIMSDK/tools/log"
 | 
						|
	"github.com/OpenIMSDK/tools/mcontext"
 | 
						|
	"github.com/OpenIMSDK/tools/utils"
 | 
						|
 | 
						|
	"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/s3/cont"
 | 
						|
	"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/relation"
 | 
						|
)
 | 
						|
 | 
						|
func (t *thirdServer) PartLimit(ctx context.Context, req *third.PartLimitReq) (*third.PartLimitResp, error) {
 | 
						|
	limit := t.s3dataBase.PartLimit()
 | 
						|
	return &third.PartLimitResp{
 | 
						|
		MinPartSize: limit.MinPartSize,
 | 
						|
		MaxPartSize: limit.MaxPartSize,
 | 
						|
		MaxNumSize:  int32(limit.MaxNumSize),
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *thirdServer) PartSize(ctx context.Context, req *third.PartSizeReq) (*third.PartSizeResp, error) {
 | 
						|
	size, err := t.s3dataBase.PartSize(ctx, req.Size)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return &third.PartSizeResp{Size: size}, nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *thirdServer) InitiateMultipartUpload(ctx context.Context, req *third.InitiateMultipartUploadReq) (*third.InitiateMultipartUploadResp, error) {
 | 
						|
	defer log.ZDebug(ctx, "return")
 | 
						|
	if err := checkUploadName(ctx, req.Name); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	expireTime := time.Now().Add(t.defaultExpire)
 | 
						|
	result, err := t.s3dataBase.InitiateMultipartUpload(ctx, req.Hash, req.Size, t.defaultExpire, int(req.MaxParts))
 | 
						|
	if err != nil {
 | 
						|
		if haErr, ok := errs.Unwrap(err).(*cont.HashAlreadyExistsError); ok {
 | 
						|
			obj := &relation.ObjectModel{
 | 
						|
				Name:        req.Name,
 | 
						|
				UserID:      mcontext.GetOpUserID(ctx),
 | 
						|
				Hash:        req.Hash,
 | 
						|
				Key:         haErr.Object.Key,
 | 
						|
				Size:        haErr.Object.Size,
 | 
						|
				ContentType: req.ContentType,
 | 
						|
				Cause:       req.Cause,
 | 
						|
				CreateTime:  time.Now(),
 | 
						|
			}
 | 
						|
			if err := t.s3dataBase.SetObject(ctx, obj); err != nil {
 | 
						|
				return nil, err
 | 
						|
			}
 | 
						|
			return &third.InitiateMultipartUploadResp{
 | 
						|
				Url: t.apiAddress(obj.Name),
 | 
						|
			}, nil
 | 
						|
		}
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	var sign *third.AuthSignParts
 | 
						|
	if result.Sign != nil && len(result.Sign.Parts) > 0 {
 | 
						|
		sign = &third.AuthSignParts{
 | 
						|
			Url:    result.Sign.URL,
 | 
						|
			Query:  toPbMapArray(result.Sign.Query),
 | 
						|
			Header: toPbMapArray(result.Sign.Header),
 | 
						|
			Parts:  make([]*third.SignPart, len(result.Sign.Parts)),
 | 
						|
		}
 | 
						|
		for i, part := range result.Sign.Parts {
 | 
						|
			sign.Parts[i] = &third.SignPart{
 | 
						|
				PartNumber: int32(part.PartNumber),
 | 
						|
				Url:        part.URL,
 | 
						|
				Query:      toPbMapArray(part.Query),
 | 
						|
				Header:     toPbMapArray(part.Header),
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return &third.InitiateMultipartUploadResp{
 | 
						|
		Upload: &third.UploadInfo{
 | 
						|
			UploadID:   result.UploadID,
 | 
						|
			PartSize:   result.PartSize,
 | 
						|
			Sign:       sign,
 | 
						|
			ExpireTime: expireTime.UnixMilli(),
 | 
						|
		},
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *thirdServer) AuthSign(ctx context.Context, req *third.AuthSignReq) (*third.AuthSignResp, error) {
 | 
						|
	defer log.ZDebug(ctx, "return")
 | 
						|
	partNumbers := utils.Slice(req.PartNumbers, func(partNumber int32) int { return int(partNumber) })
 | 
						|
	result, err := t.s3dataBase.AuthSign(ctx, req.UploadID, partNumbers)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	resp := &third.AuthSignResp{
 | 
						|
		Url:    result.URL,
 | 
						|
		Query:  toPbMapArray(result.Query),
 | 
						|
		Header: toPbMapArray(result.Header),
 | 
						|
		Parts:  make([]*third.SignPart, len(result.Parts)),
 | 
						|
	}
 | 
						|
	for i, part := range result.Parts {
 | 
						|
		resp.Parts[i] = &third.SignPart{
 | 
						|
			PartNumber: int32(part.PartNumber),
 | 
						|
			Url:        part.URL,
 | 
						|
			Query:      toPbMapArray(part.Query),
 | 
						|
			Header:     toPbMapArray(part.Header),
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return resp, nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *thirdServer) CompleteMultipartUpload(ctx context.Context, req *third.CompleteMultipartUploadReq) (*third.CompleteMultipartUploadResp, error) {
 | 
						|
	defer log.ZDebug(ctx, "return")
 | 
						|
	if err := checkUploadName(ctx, req.Name); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	result, err := t.s3dataBase.CompleteMultipartUpload(ctx, req.UploadID, req.Parts)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	obj := &relation.ObjectModel{
 | 
						|
		Name:        req.Name,
 | 
						|
		UserID:      mcontext.GetOpUserID(ctx),
 | 
						|
		Hash:        result.Hash,
 | 
						|
		Key:         result.Key,
 | 
						|
		Size:        result.Size,
 | 
						|
		ContentType: req.ContentType,
 | 
						|
		Cause:       req.Cause,
 | 
						|
		CreateTime:  time.Now(),
 | 
						|
	}
 | 
						|
	if err := t.s3dataBase.SetObject(ctx, obj); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return &third.CompleteMultipartUploadResp{
 | 
						|
		Url: t.apiAddress(obj.Name),
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *thirdServer) AccessURL(ctx context.Context, req *third.AccessURLReq) (*third.AccessURLResp, error) {
 | 
						|
	opt := &s3.AccessURLOption{}
 | 
						|
	if len(req.Query) > 0 {
 | 
						|
		switch req.Query["type"] {
 | 
						|
		case "":
 | 
						|
		case "image":
 | 
						|
			opt.Image = &s3.Image{}
 | 
						|
			opt.Image.Format = req.Query["format"]
 | 
						|
			opt.Image.Width, _ = strconv.Atoi(req.Query["width"])
 | 
						|
			opt.Image.Height, _ = strconv.Atoi(req.Query["height"])
 | 
						|
			log.ZDebug(ctx, "AccessURL image", "name", req.Name, "option", opt.Image)
 | 
						|
		default:
 | 
						|
			return nil, errs.ErrArgs.Wrap("invalid query type")
 | 
						|
		}
 | 
						|
	}
 | 
						|
	expireTime, rawURL, err := t.s3dataBase.AccessURL(ctx, req.Name, t.defaultExpire, opt)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return &third.AccessURLResp{
 | 
						|
		Url:        rawURL,
 | 
						|
		ExpireTime: expireTime.UnixMilli(),
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *thirdServer) apiAddress(name string) string {
 | 
						|
	return t.apiURL + name
 | 
						|
}
 |