You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

object.go 848 B

2 years ago
12345678910111213141516171819202122232425262728
  1. package mq
  2. import (
  3. "gitlink.org.cn/cloudream/common/consts/errorcode"
  4. log "gitlink.org.cn/cloudream/common/pkgs/logger"
  5. "gitlink.org.cn/cloudream/common/pkgs/mq"
  6. "gitlink.org.cn/cloudream/storage/agent/internal/task"
  7. agtmq "gitlink.org.cn/cloudream/storage/common/pkgs/mq/agent"
  8. )
  9. func (svc *Service) PinObject(msg *agtmq.PinObject) (*agtmq.PinObjectResp, *mq.CodeMessage) {
  10. log.WithField("FileHash", msg.FileHash).Debugf("pin object")
  11. tsk := svc.taskManager.StartComparable(task.NewIPFSPin(msg.FileHash))
  12. if tsk.Error() != nil {
  13. log.WithField("FileHash", msg.FileHash).
  14. Warnf("pin object failed, err: %s", tsk.Error().Error())
  15. return nil, mq.Failed(errorcode.OperationFailed, "pin object failed")
  16. }
  17. if msg.IsBackground {
  18. return mq.ReplyOK(agtmq.RespPinObject())
  19. }
  20. tsk.Wait()
  21. return mq.ReplyOK(agtmq.RespPinObject())
  22. }

本项目旨在将云际存储公共基础设施化,使个人及企业可低门槛使用高效的云际存储服务(安装开箱即用云际存储客户端即可,无需关注其他组件的部署),同时支持用户灵活便捷定制云际存储的功能细节。