mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
feat: optimize openim make lint style format (#1995)
* feat: add openim make lint * feat: add openim make lint * feat: add openim make lint * feat: add openim make lint * feat: add openim make lint
This commit is contained in:
parent
02a3cfb021
commit
88bcabee1c
@ -257,7 +257,8 @@ func (och *OnlineHistoryRedisConsumerHandler) toPushTopic(
|
|||||||
msgs []*sdkws.MsgData,
|
msgs []*sdkws.MsgData,
|
||||||
) {
|
) {
|
||||||
for _, v := range msgs {
|
for _, v := range msgs {
|
||||||
och.msgDatabase.MsgToPushMQ(ctx, key, conversationID, v)
|
och.msgDatabase.MsgToPushMQ(ctx, key, conversationID, v) // nolint: errcheck
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,7 +127,6 @@ func (f *Fcm) Push(ctx context.Context, userIDs []string, title, content string,
|
|||||||
response, err := f.fcmMsgCli.SendAll(ctx, messages)
|
response, err := f.fcmMsgCli.SendAll(ctx, messages)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
Fail = Fail + messageCount
|
Fail = Fail + messageCount
|
||||||
// log.Info(operationID, "some token push err", err.Error(), messageCount)
|
|
||||||
} else {
|
} else {
|
||||||
Success = Success + response.SuccessCount
|
Success = Success + response.SuccessCount
|
||||||
Fail = Fail + response.FailureCount
|
Fail = Fail + response.FailureCount
|
||||||
|
@ -194,5 +194,5 @@ func (cli *K8sDR) GetClientLocalConns() map[string][]*grpc.ClientConn {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
func (cli *K8sDR) Close() {
|
func (cli *K8sDR) Close() {
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
@ -118,7 +118,7 @@ func configureProducerAck(p *Producer, ackConfig string) {
|
|||||||
|
|
||||||
// configureCompression configures the message compression type for the producer.
|
// configureCompression configures the message compression type for the producer.
|
||||||
func configureCompression(p *Producer, compressType string) {
|
func configureCompression(p *Producer, compressType string) {
|
||||||
var compress sarama.CompressionCodec = sarama.CompressionNone
|
var compress = sarama.CompressionNone
|
||||||
err := compress.UnmarshalText(bytes.ToLower([]byte(compressType)))
|
err := compress.UnmarshalText(bytes.ToLower([]byte(compressType)))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("Failed to configure compression: %v\n", err)
|
fmt.Printf("Failed to configure compression: %v\n", err)
|
||||||
|
@ -57,6 +57,20 @@ type UserRegisterRequest struct {
|
|||||||
Users []User `json:"users"`
|
Users []User `json:"users"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* func main() {
|
||||||
|
// Example usage of functions
|
||||||
|
token, err := GetUserToken("openIM123456")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Error getting user token: %v", err)
|
||||||
|
}
|
||||||
|
fmt.Println("Token:", token)
|
||||||
|
|
||||||
|
err = RegisterUser(token, "testUserID", "TestNickname", "https://example.com/image.jpg")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Error registering user: %v", err)
|
||||||
|
}
|
||||||
|
} */
|
||||||
|
|
||||||
// GetUserToken requests a user token from the API.
|
// GetUserToken requests a user token from the API.
|
||||||
func GetUserToken(userID string) (string, error) {
|
func GetUserToken(userID string) (string, error) {
|
||||||
reqBody := UserTokenRequest{
|
reqBody := UserTokenRequest{
|
||||||
|
@ -101,23 +101,23 @@ func main() {
|
|||||||
select {}
|
select {}
|
||||||
}
|
}
|
||||||
|
|
||||||
// // getLatestVersion fetches the latest version number from a given URL.
|
// getLatestVersion fetches the latest version number from a given URL.
|
||||||
// func getLatestVersion(url string) (string, error) {
|
/* func getLatestVersion(url string) (string, error) {
|
||||||
// resp, err := http.Get(url)
|
resp, err := http.Get(url)
|
||||||
// if err != nil {
|
if err != nil {
|
||||||
// return "", err
|
return "", err
|
||||||
// }
|
}
|
||||||
// defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
|
|
||||||
// location := resp.Header.Get("Location")
|
// location := resp.Header.Get("Location")
|
||||||
// if location == "" {
|
// if location == "" {
|
||||||
// return defaultTemplateVersion, nil
|
// return defaultTemplateVersion, nil
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// // Extract the version number from the URL
|
// Extract the version number from the URL
|
||||||
// latestVersion := filepath.Base(location)
|
latestVersion := filepath.Base(location)
|
||||||
// return latestVersion, nil
|
return latestVersion, nil
|
||||||
// }
|
} */
|
||||||
|
|
||||||
// downloadAndExtract downloads a file from a URL and extracts it to a destination directory.
|
// downloadAndExtract downloads a file from a URL and extracts it to a destination directory.
|
||||||
func downloadAndExtract(url, destDir string) error {
|
func downloadAndExtract(url, destDir string) error {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user