mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
add management interface
This commit is contained in:
parent
8987005e60
commit
e63b3ab0e3
@ -5,14 +5,13 @@ import (
|
|||||||
"Open_IM/pkg/common/constant"
|
"Open_IM/pkg/common/constant"
|
||||||
"Open_IM/pkg/common/db/mysql_model/im_mysql_model"
|
"Open_IM/pkg/common/db/mysql_model/im_mysql_model"
|
||||||
"Open_IM/pkg/common/log"
|
"Open_IM/pkg/common/log"
|
||||||
|
"Open_IM/pkg/utils"
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/gin-gonic/gin"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
|
||||||
"github.com/spf13/viper"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type ParamsLogin struct {
|
type ParamsLogin struct {
|
||||||
@ -89,7 +88,7 @@ func Login(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func OpenIMToken(Account string, platform int32) (*http.Response, error) {
|
func OpenIMToken(Account string, platform int32) (*http.Response, error) {
|
||||||
url := fmt.Sprintf("http://%s:10000/auth/user_token", viper.GetString("endpoints.api"))
|
url := fmt.Sprintf("http://%s:10000/auth/user_token", utils.ServerIP)
|
||||||
|
|
||||||
client := &http.Client{}
|
client := &http.Client{}
|
||||||
params := make(map[string]interface{})
|
params := make(map[string]interface{})
|
||||||
|
@ -6,15 +6,14 @@ import (
|
|||||||
"Open_IM/pkg/common/db"
|
"Open_IM/pkg/common/db"
|
||||||
"Open_IM/pkg/common/db/mysql_model/im_mysql_model"
|
"Open_IM/pkg/common/db/mysql_model/im_mysql_model"
|
||||||
"Open_IM/pkg/common/log"
|
"Open_IM/pkg/common/log"
|
||||||
|
"Open_IM/pkg/utils"
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"net/http"
|
|
||||||
|
|
||||||
"github.com/garyburd/redigo/redis"
|
"github.com/garyburd/redigo/redis"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"github.com/spf13/viper"
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ParamsSetPassword struct {
|
type ParamsSetPassword struct {
|
||||||
@ -120,7 +119,7 @@ openIMRegisterTab:
|
|||||||
}
|
}
|
||||||
|
|
||||||
func OpenIMRegister(account string) (*http.Response, error) {
|
func OpenIMRegister(account string) (*http.Response, error) {
|
||||||
url := fmt.Sprintf("http://%s:10000/auth/user_register", viper.GetString("endpoints.api"))
|
url := fmt.Sprintf("http://%s:10000/auth/user_register", utils.ServerIP)
|
||||||
fmt.Println("1:", config.Config.Secret)
|
fmt.Println("1:", config.Config.Secret)
|
||||||
|
|
||||||
client := &http.Client{}
|
client := &http.Client{}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user