openim-server/tools
chao 8d308a4163
feat: support stream message (#2824)
* fix: GroupApplicationAcceptedNotification

* fix: GroupApplicationAcceptedNotification

* fix: NotificationUserInfoUpdate

* cicd: robot automated Change

* fix: component

* fix: getConversationInfo

* feat: cron task

* feat: cron task

* feat: cron task

* feat: cron task

* feat: cron task

* fix: minio config url recognition error

* update gomake version

* update gomake version

* fix: seq conversion bug

* fix: redis pipe exec

* fix: ImportFriends

* fix: A large number of logs keysAndValues ​​length is not even

* feat: mark read aggregate write

* feat: online status supports redis cluster

* feat: online status supports redis cluster

* feat: online status supports redis cluster

* merge

* merge

* read seq is written to mongo

* read seq is written to mongo

* fix: invitation to join group notification

* fix: friend op_user_id

* feat: optimizing asynchronous context

* feat: optimizing memamq size

* feat: add GetSeqMessage

* feat: GroupApplicationAgreeMemberEnterNotification

* feat: GroupApplicationAgreeMemberEnterNotification

* feat: go.mod

* feat: go.mod

* feat: join group notification and get seq

* feat: join group notification and get seq

* feat: avoid pulling messages from sessions with a large number of max seq values of 0

* feat: API supports gzip

* go.mod

* fix: nil pointer error on close

* fix: listen error

* fix: listen error

* update go.mod

* feat: add log

* fix: token parse token value

* fix: GetMsgBySeqs boundary issues

* fix: sn_ not sort

* fix: sn_ not sort

* fix: sn_ not sort

* fix: jssdk add

* fix: jssdk support

* fix: jssdk support

* fix: jssdk support

* fix: the message I sent is not set to read seq in mongodb

* fix: cannot modify group member avatars

* fix: MemberEnterNotification

* fix: MemberEnterNotification

* fix: MsgData status

* feat: stream msg

* feat: support stream messages

---------

Co-authored-by: withchao <withchao@users.noreply.github.com>
2024-11-04 08:40:39 +00:00
..
changelog refactor: 3.7.0 code conventions. (#2148) 2024-04-19 22:23:08 +08:00
check-component feat: implement offline push using kafka (#2600) 2024-09-10 11:10:15 +00:00
check-free-memory refactor: 3.7.0 code conventions. (#2148) 2024-04-19 22:23:08 +08:00
imctl refactor: 3.7.0 code conventions. (#2148) 2024-04-19 22:23:08 +08:00
infra refactor: 3.7.0 code conventions. (#2148) 2024-04-19 22:23:08 +08:00
ncpu refactor: 3.7.0 code conventions. (#2148) 2024-04-19 22:23:08 +08:00
seq fix: user seq bug (#2442) 2024-07-25 12:01:33 +00:00
streammsg feat: support stream message (#2824) 2024-11-04 08:40:39 +00:00
url2im refactor: add GetAdminToken interface. (#2684) 2024-09-29 08:20:34 +00:00
versionchecker refactor: 3.7.0 code conventions. (#2148) 2024-04-19 22:23:08 +08:00
yamlfmt refactor: 3.7.0 code conventions. (#2148) 2024-04-19 22:23:08 +08:00
README.md feat: set docs openim-server url address fix (#1043) 2023-09-08 07:20:30 +00:00

README.md

Notes about go workspace

As openim is using go1.18's workspace feature, once you add a new module, you need to run go work use -r . at root directory to update the workspace synced.

Create a new extensions

  1. Create your tools_name directory in pkg /tools first and cd into it.
  2. Init the project.
  3. Then go work use -r . at current directory to update the workspace.
  4. Create your tools

You can execute the following commands to do things above:

# edit the CRD_NAME and CRD_GROUP to your own
export OPENIM_TOOLS_NAME=<Changeme>

# copy and paste to create a new CRD and Controller
mkdir tools/${OPENIM_TOOLS_NAME}
cd tools/${OPENIM_TOOLS_NAME}
go mod init github.com/openimsdk/open-im-server/tools/${OPENIM_TOOLS_NAME}
go mod tidy
go work use -r .
cd ../..