202 lines
4.7 KiB
Go
202 lines
4.7 KiB
Go
|
package rumblelivestreamlib
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"log"
|
||
|
"net/http"
|
||
|
"net/http/cookiejar"
|
||
|
"net/url"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/robertkrimen/otto"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
urlWeb = "https://rumble.com"
|
||
|
urlGetSalts = urlWeb + "/service.php?name=user.get_salts"
|
||
|
urlUserLogin = urlWeb + "/service.php?name=user.login"
|
||
|
urlUserLogout = urlWeb + "/service.php?name=user.logout"
|
||
|
)
|
||
|
|
||
|
type Client struct {
|
||
|
httpClient *http.Client
|
||
|
StreamKey string
|
||
|
StreamUrl string
|
||
|
}
|
||
|
|
||
|
func (c *Client) printCookies() {
|
||
|
u, err := url.Parse(urlWeb)
|
||
|
if err != nil {
|
||
|
log.Fatal("url.Parse err=", err)
|
||
|
}
|
||
|
fmt.Println("Cookies:")
|
||
|
for _, cookie := range c.httpClient.Jar.Cookies(u) {
|
||
|
fmt.Println(cookie)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func NewClient(streamKey string, streamUrl string) (*Client, error) {
|
||
|
cl, err := newHttpClient()
|
||
|
if err != nil {
|
||
|
return nil, pkgErr("error creating http client", err)
|
||
|
}
|
||
|
|
||
|
return &Client{cl, streamKey, streamUrl}, nil
|
||
|
}
|
||
|
|
||
|
func newHttpClient() (*http.Client, error) {
|
||
|
jar, err := cookiejar.New(nil)
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("error creating cookiejar: %v", err)
|
||
|
}
|
||
|
|
||
|
return &http.Client{Jar: jar}, nil
|
||
|
}
|
||
|
|
||
|
type GetSaltsData struct {
|
||
|
Salts []string `json:"salts"`
|
||
|
}
|
||
|
|
||
|
type GetSaltsResponse struct {
|
||
|
Data GetSaltsData `json:"data"`
|
||
|
}
|
||
|
|
||
|
func (c *Client) Login(username string, password string) error {
|
||
|
if c.httpClient == nil {
|
||
|
return pkgErr("", fmt.Errorf("http client is nil"))
|
||
|
}
|
||
|
|
||
|
salts, err := c.getSalts(username)
|
||
|
if err != nil {
|
||
|
return pkgErr("error getting salts", err)
|
||
|
}
|
||
|
|
||
|
err = c.userLogin(username, password, salts)
|
||
|
if err != nil {
|
||
|
return pkgErr("error logging in", err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (c *Client) getWeb() error {
|
||
|
resp, err := c.httpClient.Get(urlWeb)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("http Get request returned error: %v", err)
|
||
|
}
|
||
|
defer resp.Body.Close()
|
||
|
if resp.StatusCode != http.StatusOK {
|
||
|
return fmt.Errorf("http Get response status not %s: %s", http.StatusText(http.StatusOK), resp.Status)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (c *Client) getSalts(username string) ([]string, error) {
|
||
|
u := url.URL{}
|
||
|
q := u.Query()
|
||
|
q.Add("username", username)
|
||
|
body := q.Encode()
|
||
|
resp, err := c.httpClient.Post(urlGetSalts, "application/x-www-form-urlencoded", strings.NewReader(body))
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("http Post request returned error: %v", err)
|
||
|
}
|
||
|
defer resp.Body.Close()
|
||
|
if resp.StatusCode != http.StatusOK {
|
||
|
return nil, fmt.Errorf("http Post response status not %s: %s", http.StatusText(http.StatusOK), resp.Status)
|
||
|
}
|
||
|
|
||
|
bodyB, err := io.ReadAll(resp.Body)
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("error reading body bytes: %v", err)
|
||
|
}
|
||
|
fmt.Println("BodyB:", string(bodyB))
|
||
|
|
||
|
var gsr GetSaltsResponse
|
||
|
err = json.NewDecoder(strings.NewReader(string(bodyB))).Decode(&gsr)
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("error decoding response body from server: %v", err)
|
||
|
}
|
||
|
|
||
|
return gsr.Data.Salts, nil
|
||
|
}
|
||
|
|
||
|
func (c *Client) userLogin(username string, password string, salts []string) error {
|
||
|
hashes, err := generateHashes(password, salts)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("error generating password hashes: %v", err)
|
||
|
}
|
||
|
|
||
|
u := url.URL{}
|
||
|
q := u.Query()
|
||
|
q.Add("username", username)
|
||
|
q.Add("password_hashes", hashes)
|
||
|
body := q.Encode()
|
||
|
resp, err := c.httpClient.Post(urlUserLogin, "application/x-www-form-urlencoded", strings.NewReader(body))
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("http Post request returned error: %v", err)
|
||
|
}
|
||
|
defer resp.Body.Close()
|
||
|
if resp.StatusCode != http.StatusOK {
|
||
|
return fmt.Errorf("http Post response status not %s: %s", http.StatusText(http.StatusOK), resp.Status)
|
||
|
}
|
||
|
bodyB, _ := io.ReadAll(resp.Body)
|
||
|
fmt.Println(string(bodyB))
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func generateHashes(password string, salts []string) (string, error) {
|
||
|
vm := otto.New()
|
||
|
|
||
|
vm.Set("password", password)
|
||
|
vm.Set("salt0", salts[0])
|
||
|
vm.Set("salt1", salts[1])
|
||
|
vm.Set("salt2", salts[2])
|
||
|
|
||
|
_, err := vm.Run(md5)
|
||
|
if err != nil {
|
||
|
return "", fmt.Errorf("error running md5 javascript: %v", err)
|
||
|
}
|
||
|
|
||
|
value, err := vm.Get("hashes")
|
||
|
if err != nil {
|
||
|
return "", fmt.Errorf("error getting hashes value: %v", err)
|
||
|
}
|
||
|
|
||
|
hashes, err := value.ToString()
|
||
|
if err != nil {
|
||
|
return "", fmt.Errorf("error converting hashes value to string: %v", err)
|
||
|
}
|
||
|
|
||
|
return hashes, nil
|
||
|
}
|
||
|
|
||
|
func (c *Client) Logout() error {
|
||
|
if c.httpClient == nil {
|
||
|
return pkgErr("", fmt.Errorf("http client is nil"))
|
||
|
}
|
||
|
|
||
|
err := c.userLogout()
|
||
|
if err != nil {
|
||
|
return pkgErr("error logging out", err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (c *Client) userLogout() error {
|
||
|
resp, err := c.httpClient.Get(urlUserLogout)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("http Get request returned error: %v", err)
|
||
|
}
|
||
|
defer resp.Body.Close()
|
||
|
if resp.StatusCode != http.StatusOK {
|
||
|
return fmt.Errorf("http Get response status not %s: %s", http.StatusText(http.StatusOK), resp.Status)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|