Skip to content

Commit db09f70

Browse files
withchaocubxxwskiffer-git
authored
optimize code, configuration files (#493)
* fix: ptr * feat: go 1.19 * fix: config get env * test log * fix; login * format * mage * mage * format * format * Refactor code * Refactor config * Refactor config * Refactor config * config * Refactor config * Refactor config * Refactor code * code format * code format * code format, compiled and passed * code format * Refactor code * code format * remove scripts * cobra runE * bug * bug * bug * fix: runtime: goroutine stack exceeds * rpc opt * Refactor code * update mod * update mod * update mod * update mod * update mod * fix call * fix * fix * update go.mod * update go.mod * delete file * Refactor code * Refactor code * chat secret * chat secret * Refactor code * Refactor code * Refactor code * Refactor code * add cancel * Refactor code * Refactor code * gin.SetMode(gin.ReleaseMode) * gin.SetMode(gin.ReleaseMode) * remove useless code * update README.md * update README.md * update README.md * update version * Refactor code * Refactor code * feat: optimize api call * Refactor code * Refactor code * Refactor code --------- Co-authored-by: Xinwei Xiong <[email protected]> Co-authored-by: skiffer-git <[email protected]>
1 parent 9d1043b commit db09f70

File tree

191 files changed

+5497
-10847
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+5497
-10847
lines changed

.github/workflows/auto-invite.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
+ <a href="https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg" target="_blank"><img src="https://img.shields.io/badge/Slack-OpenIM%2B-blueviolet?logo=slack&amp;logoColor=white"></a> We also have Slack channels for you to communicate and discuss. To join, visit https://slack.com/ and join our [👀 Open-IM-Server slack](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg) team channel.
4242
+ <a href="https://mail.google.com/mail/u/0/?fs=1&tf=cm&[email protected]" target="_blank"><img src="https://img.shields.io/badge/gmail-%40OOpenIMSDKCore?style=social&logo=gmail"></a> Get in touch with us on [Gmail](https://mail.google.com/mail/u/0/?fs=1&tf=cm&[email protected]). If you have any questions or issues that need resolving, or any suggestions and feedback for our open source projects, please feel free to contact us via email.
4343
+ <a href="https://doc.rentsoft.cn/" target="_blank"><img src="https://img.shields.io/badge/%E5%8D%9A%E5%AE%A2-%40OpenIMSDKCore-blue?style=social&logo=Octopus%20Deploy"></a> Read our [blog](https://doc.rentsoft.cn/). Our blog is a great place to stay up-to-date with Open-IM-Server projects and trends. On the blog, we share our latest developments, tech trends, and other interesting information.
44-
+ <a href="https://github.com/OpenIMSDK/OpenIM-Docs/blob/main/docs/images/WechatIMG20.jpeg" target="_blank"><img src="https://img.shields.io/badge/%E5%BE%AE%E4%BF%A1-OpenIMSDKCore-brightgreen?logo=wechat&style=flat-square"></a> Add [Wechat](https://github.com/OpenIMSDK/OpenIM-Docs/blob/main/docs/images/WechatIMG20.jpeg) and indicate that you are a user or developer of Open-IM-Server. We will process your request as soon as possible.
44+
+ <a href="https://github.com/openimsdk/OpenIM-Docs/blob/main/docs/images/WechatIMG20.jpeg" target="_blank"><img src="https://img.shields.io/badge/%E5%BE%AE%E4%BF%A1-OpenIMSDKCore-brightgreen?logo=wechat&style=flat-square"></a> Add [Wechat](https://github.com/openimsdk/OpenIM-Docs/blob/main/docs/images/WechatIMG20.jpeg) and indicate that you are a user or developer of Open-IM-Server. We will process your request as soon as possible.
4545
4646
- name: Close Issue
4747
uses: peter-evans/close-issue@v3

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -373,3 +373,5 @@ dist
373373

374374
# config files, may contain sensitive informatio
375375
config/config.yaml
376+
377+
start-config.yml

.golangci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ linters-settings:
176176
# put imports beginning with prefix after 3rd-party packages;
177177
# only support one prefix
178178
# if not set, use goimports.local-prefixes
179-
prefix: github.com/OpenIMSDK/OpenKF
179+
prefix: github.com/openimsdk/OpenKF
180180
gocognit:
181181
# minimal code complexity to report, 30 by default (but we recommend 10-20)
182182
min-complexity: 30
@@ -333,7 +333,7 @@ linters-settings:
333333
goimports:
334334
# put imports beginning with prefix after 3rd-party packages;
335335
# it's a comma-separated list of prefixes
336-
local-prefixes: github.com/OpenIMSDK/OpenKF
336+
local-prefixes: github.com/openimsdk/OpenKF
337337
golint:
338338
# minimal confidence for issues, default is 0.8
339339
min-confidence: 0.9

.goreleaser.yaml

+14-14
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ changelog:
245245
# build_flag_templates:
246246
# - "--pull"
247247
# - "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/OpenIMSDK/chat/main/README.md"
248-
# - "--label=io.artifacthub.package.logo-url=hhttps://github.com/OpenIMSDK/chat/blob/main/assets/logo/openim-logo-green.png"
248+
# - "--label=io.artifacthub.package.logo-url=hhttps://github.com/openimsdk/chat/blob/main/assets/logo/openim-logo-green.png"
249249
# - '--label=io.artifacthub.package.maintainers=[{"name":"Xinwei Xiong","email":"[email protected]"}]'
250250
# - "--label=io.artifacthub.package.license=Apace-2.0"
251251
# - "--label=org.opencontainers.image.description=OpenIM Open source top instant messaging system"
@@ -267,7 +267,7 @@ changelog:
267267
# build_flag_templates:
268268
# - "--pull"
269269
# - "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/OpenIMSDK/chat/main/README.md"
270-
# - "--label=io.artifacthub.package.logo-url=hhttps://github.com/OpenIMSDK/chat/blob/main/assets/logo/openim-logo-green.png"
270+
# - "--label=io.artifacthub.package.logo-url=hhttps://github.com/openimsdk/chat/blob/main/assets/logo/openim-logo-green.png"
271271
# - '--label=io.artifacthub.package.maintainers=[{"name":"Xinwei Xiong","email":"[email protected]"}]'
272272
# - "--label=io.artifacthub.package.license=Apace-2.0"
273273
# - "--label=org.opencontainers.image.description=OpenIM Open source top instant messaging system"
@@ -289,7 +289,7 @@ changelog:
289289
# build_flag_templates:
290290
# - "--pull"
291291
# - "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/OpenIMSDK/chat/main/README.md"
292-
# - "--label=io.artifacthub.package.logo-url=hhttps://github.com/OpenIMSDK/chat/blob/main/assets/logo/openim-logo-green.png"
292+
# - "--label=io.artifacthub.package.logo-url=hhttps://github.com/openimsdk/chat/blob/main/assets/logo/openim-logo-green.png"
293293
# - '--label=io.artifacthub.package.maintainers=[{"name":"Xinwei Xiong","email":"[email protected]"}]'
294294
# - "--label=io.artifacthub.package.license=Apace-2.0"
295295
# - "--label=org.opencontainers.image.description=OpenIM Open source top instant messaging system"
@@ -311,7 +311,7 @@ changelog:
311311
# build_flag_templates:
312312
# - "--pull"
313313
# - "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/OpenIMSDK/chat/main/README.md"
314-
# - "--label=io.artifacthub.package.logo-url=hhttps://github.com/OpenIMSDK/chat/blob/main/assets/logo/openim-logo-green.png"
314+
# - "--label=io.artifacthub.package.logo-url=hhttps://github.com/openimsdk/chat/blob/main/assets/logo/openim-logo-green.png"
315315
# - '--label=io.artifacthub.package.maintainers=[{"name":"Xinwei Xiong","email":"[email protected]"}]'
316316
# - "--label=io.artifacthub.package.license=Apace-2.0"
317317
# - "--label=org.opencontainers.image.description=OpenIM Open source top instant messaging system"
@@ -361,7 +361,7 @@ nfpms:
361361
- admin-rpc
362362
# Your app's vendor.
363363
vendor: OpenIMSDK
364-
homepage: https://github.com/OpenIMSDK/chat
364+
homepage: https://github.com/openimsdk/chat
365365
maintainer: kubbot <https://github.com/kubbot>
366366
description: |-
367367
Auto sync github labels
@@ -441,17 +441,17 @@ release:
441441
prerelease: auto
442442
footer: |
443443
444-
## Welcome to the {{ .Tag }} release of [chat](https://github.com/OpenIMSDK/chat)!🎉🎉!
444+
## Welcome to the {{ .Tag }} release of [chat](https://github.com/openimsdk/chat)!🎉🎉!
445445
446-
**Full Changelog**: https://github.com/OpenIMSDK/chat/compare/{{ .PreviousTag }}...{{ .Tag }}
446+
**Full Changelog**: https://github.com/openimsdk/chat/compare/{{ .PreviousTag }}...{{ .Tag }}
447447
448448
## Helping out
449449
450-
+ We release logs are recorded on [✨ CHANGELOG](https://github.com/OpenIMSDK/Open-IM-Server/blob/main/CHANGELOG/CHANGELOG.md)
450+
+ We release logs are recorded on [✨ CHANGELOG](https://github.com/openimsdk/Open-IM-Server/blob/main/CHANGELOG/CHANGELOG.md)
451451
452-
+ For information on versions of OpenIM and how to maintain branches, read [📚this article](https://github.com/OpenIMSDK/Open-IM-Server/blob/main/docs/conversions/version.md)
452+
+ For information on versions of OpenIM and how to maintain branches, read [📚this article](https://github.com/openimsdk/Open-IM-Server/blob/main/docs/conversions/version.md)
453453
454-
+ If you wish to use mirroring, read OpenIM's [image management policy](https://github.com/OpenIMSDK/Open-IM-Server/blob/main/docs/conversions/images.md)
454+
+ If you wish to use mirroring, read OpenIM's [image management policy](https://github.com/openimsdk/Open-IM-Server/blob/main/docs/conversions/images.md)
455455
456456
**Want to be one of them 😘?**
457457
@@ -460,7 +460,7 @@ release:
460460
<img src="https://github.com/openimbot/openimbot/blob/main/assets/icon/blue%E9%80%8F%E6%98%8E.png" width="50" height="50" />
461461
</a>
462462
<a href="https://www.openim.online">
463-
<img src="https://github.com/OpenIMSDK/Open-IM-Server/blob/main/assets/logo/openim-logo.png" />
463+
<img src="https://github.com/openimsdk/Open-IM-Server/blob/main/assets/logo/openim-logo.png" />
464464
</a>
465465
<a href="https://github.com/openimbot" style="float: right; margin-left: 10px;">
466466
<img src="https://github.com/openimbot/openimbot/blob/main/assets/icon/red%E9%80%8F%E6%98%8E.png" width="50" height="50" />
@@ -470,8 +470,8 @@ release:
470470
> **Note**
471471
> @openimbot and @kubbot have made great contributions to the community as community 🤖robots(@openimsdk/bot), respectively.
472472
> Thanks to the @openimsdk/openim team for all their hard work on this release.
473-
> Thank you to all the [💕developers and contributors](https://github.com/OpenIMSDK/chat/graphs/contributors), people from all over the world, OpenIM brings us together
474-
> Contributions to this project are welcome! Please see [CONTRIBUTING.md](https://github.com/OpenIMSDK/Open-IM-Server/blob/main/CONTRIBUTING.md) for details.
473+
> Thank you to all the [💕developers and contributors](https://github.com/openimsdk/chat/graphs/contributors), people from all over the world, OpenIM brings us together
474+
> Contributions to this project are welcome! Please see [CONTRIBUTING.md](https://github.com/openimsdk/Open-IM-Server/blob/main/CONTRIBUTING.md) for details.
475475
476476
477477
## Get Involved with OpenIM!
@@ -492,4 +492,4 @@ release:
492492
# announce:
493493
# slack:
494494
# enabled: false
495-
# message_template: "slack {{ .Tag }} is out! Check it out: https://github.com/OpenIMSDK/Open-IM-Server/releases/tag/{{ .Tag }}"
495+
# message_template: "slack {{ .Tag }} is out! Check it out: https://github.com/openimsdk/Open-IM-Server/releases/tag/{{ .Tag }}"

0 commit comments

Comments
 (0)