You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1281 lines
34 KiB
1281 lines
34 KiB
package whatsapp
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/base64"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"runtime"
|
|
"strings"
|
|
|
|
"github.com/PuerkitoBio/goquery"
|
|
webp "github.com/nickalie/go-webpbin"
|
|
"github.com/sunshineplan/imgconv"
|
|
|
|
qrCode "github.com/skip2/go-qrcode"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"go.mau.fi/whatsmeow"
|
|
wabin "go.mau.fi/whatsmeow/binary"
|
|
waproto "go.mau.fi/whatsmeow/binary/proto"
|
|
"go.mau.fi/whatsmeow/store"
|
|
"go.mau.fi/whatsmeow/store/sqlstore"
|
|
"go.mau.fi/whatsmeow/types"
|
|
|
|
"github.com/dimaskiddo/go-whatsapp-multidevice-rest/pkg/env"
|
|
"github.com/dimaskiddo/go-whatsapp-multidevice-rest/pkg/log"
|
|
)
|
|
|
|
var WhatsAppDatastore *sqlstore.Container
|
|
var WhatsAppClient = make(map[string]*whatsmeow.Client)
|
|
|
|
var (
|
|
WhatsAppClientProxyURL string
|
|
)
|
|
|
|
func init() {
|
|
var err error
|
|
|
|
dbType, err := env.GetEnvString("WHATSAPP_DATASTORE_TYPE")
|
|
if err != nil {
|
|
log.Print(nil).Fatal("Error Parse Environment Variable for WhatsApp Client Datastore Type")
|
|
}
|
|
|
|
dbURI, err := env.GetEnvString("WHATSAPP_DATASTORE_URI")
|
|
if err != nil {
|
|
log.Print(nil).Fatal("Error Parse Environment Variable for WhatsApp Client Datastore URI")
|
|
}
|
|
|
|
datastore, err := sqlstore.New(dbType, dbURI, nil)
|
|
if err != nil {
|
|
log.Print(nil).Fatal("Error Connect WhatsApp Client Datastore")
|
|
}
|
|
|
|
WhatsAppClientProxyURL, _ = env.GetEnvString("WHATSAPP_CLIENT_PROXY_URL")
|
|
|
|
WhatsAppDatastore = datastore
|
|
}
|
|
|
|
func WhatsAppInitClient(device *store.Device, jid string) {
|
|
var err error
|
|
wabin.IndentXML = true
|
|
|
|
if WhatsAppClient[jid] == nil {
|
|
if device == nil {
|
|
// Initialize New WhatsApp Client Device in Datastore
|
|
device = WhatsAppDatastore.NewDevice()
|
|
}
|
|
|
|
// Set Client Properties
|
|
store.DeviceProps.Os = proto.String(WhatsAppGetUserOS())
|
|
store.DeviceProps.PlatformType = WhatsAppGetUserAgent("chrome").Enum()
|
|
store.DeviceProps.RequireFullSync = proto.Bool(false)
|
|
|
|
// Set Client Versions
|
|
version.Major, err = env.GetEnvInt("WHATSAPP_VERSION_MAJOR")
|
|
if err == nil {
|
|
store.DeviceProps.Version.Primary = proto.Uint32(uint32(version.Major))
|
|
}
|
|
version.Minor, err = env.GetEnvInt("WHATSAPP_VERSION_MINOR")
|
|
if err == nil {
|
|
store.DeviceProps.Version.Secondary = proto.Uint32(uint32(version.Minor))
|
|
}
|
|
version.Patch, err = env.GetEnvInt("WHATSAPP_VERSION_PATCH")
|
|
if err == nil {
|
|
store.DeviceProps.Version.Tertiary = proto.Uint32(uint32(version.Patch))
|
|
}
|
|
|
|
// Initialize New WhatsApp Client
|
|
// And Save it to The Map
|
|
WhatsAppClient[jid] = whatsmeow.NewClient(device, nil)
|
|
|
|
// Set WhatsApp Client Proxy Address if Proxy URL is Provided
|
|
if len(WhatsAppClientProxyURL) > 0 {
|
|
WhatsAppClient[jid].SetProxyAddress(WhatsAppClientProxyURL)
|
|
}
|
|
|
|
// Set WhatsApp Client Auto Reconnect
|
|
WhatsAppClient[jid].EnableAutoReconnect = true
|
|
|
|
// Set WhatsApp Client Auto Trust Identity
|
|
WhatsAppClient[jid].AutoTrustIdentity = true
|
|
|
|
// Disable Self Broadcast
|
|
WhatsAppClient[jid].DontSendSelfBroadcast = true
|
|
}
|
|
}
|
|
|
|
func WhatsAppGetUserAgent(agentType string) waproto.DeviceProps_PlatformType {
|
|
switch strings.ToLower(agentType) {
|
|
case "desktop":
|
|
return waproto.DeviceProps_DESKTOP
|
|
case "mac":
|
|
return waproto.DeviceProps_CATALINA
|
|
case "android":
|
|
return waproto.DeviceProps_ANDROID_AMBIGUOUS
|
|
case "android-phone":
|
|
return waproto.DeviceProps_ANDROID_PHONE
|
|
case "andorid-tablet":
|
|
return waproto.DeviceProps_ANDROID_TABLET
|
|
case "ios-phone":
|
|
return waproto.DeviceProps_IOS_PHONE
|
|
case "ios-catalyst":
|
|
return waproto.DeviceProps_IOS_CATALYST
|
|
case "ipad":
|
|
return waproto.DeviceProps_IPAD
|
|
case "wearos":
|
|
return waproto.DeviceProps_WEAR_OS
|
|
case "ie":
|
|
return waproto.DeviceProps_IE
|
|
case "edge":
|
|
return waproto.DeviceProps_EDGE
|
|
case "chrome":
|
|
return waproto.DeviceProps_CHROME
|
|
case "safari":
|
|
return waproto.DeviceProps_SAFARI
|
|
case "firefox":
|
|
return waproto.DeviceProps_FIREFOX
|
|
case "opera":
|
|
return waproto.DeviceProps_OPERA
|
|
case "uwp":
|
|
return waproto.DeviceProps_UWP
|
|
case "aloha":
|
|
return waproto.DeviceProps_ALOHA
|
|
case "tv-tcl":
|
|
return waproto.DeviceProps_TCL_TV
|
|
default:
|
|
return waproto.DeviceProps_UNKNOWN
|
|
}
|
|
}
|
|
|
|
func WhatsAppGetUserOS() string {
|
|
switch runtime.GOOS {
|
|
case "windows":
|
|
return "Windows"
|
|
case "darwin":
|
|
return "macOS"
|
|
default:
|
|
return "Linux"
|
|
}
|
|
}
|
|
|
|
func WhatsAppGenerateQR(qrChan <-chan whatsmeow.QRChannelItem) (string, int) {
|
|
qrChanCode := make(chan string)
|
|
qrChanTimeout := make(chan int)
|
|
|
|
// Get QR Code Data and Timeout
|
|
go func() {
|
|
for evt := range qrChan {
|
|
if evt.Event == "code" {
|
|
qrChanCode <- evt.Code
|
|
qrChanTimeout <- int(evt.Timeout.Seconds())
|
|
}
|
|
}
|
|
}()
|
|
|
|
// Generate QR Code Data to PNG Image
|
|
qrTemp := <-qrChanCode
|
|
qrPNG, _ := qrCode.Encode(qrTemp, qrCode.Medium, 256)
|
|
|
|
// Return QR Code PNG in Base64 Format and Timeout Information
|
|
return base64.StdEncoding.EncodeToString(qrPNG), <-qrChanTimeout
|
|
}
|
|
|
|
func WhatsAppLogin(jid string) (string, int, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
// Make Sure WebSocket Connection is Disconnected
|
|
WhatsAppClient[jid].Disconnect()
|
|
|
|
if WhatsAppClient[jid].Store.ID == nil {
|
|
// Device ID is not Exist
|
|
// Generate QR Code
|
|
qrChanGenerate, _ := WhatsAppClient[jid].GetQRChannel(context.Background())
|
|
|
|
// Connect WebSocket while Initialize QR Code Data to be Sent
|
|
err := WhatsAppClient[jid].Connect()
|
|
if err != nil {
|
|
return "", 0, err
|
|
}
|
|
|
|
// Get Generated QR Code and Timeout Information
|
|
qrImage, qrTimeout := WhatsAppGenerateQR(qrChanGenerate)
|
|
|
|
// Return QR Code in Base64 Format and Timeout Information
|
|
return "data:image/png;base64," + qrImage, qrTimeout, nil
|
|
} else {
|
|
// Device ID is Exist
|
|
// Reconnect WebSocket
|
|
err := WhatsAppReconnect(jid)
|
|
if err != nil {
|
|
return "", 0, err
|
|
}
|
|
|
|
return "WhatsApp Client is Reconnected", 0, nil
|
|
}
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", 0, errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppLoginPair(jid string) (string, int, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
// Make Sure WebSocket Connection is Disconnected
|
|
WhatsAppClient[jid].Disconnect()
|
|
|
|
if WhatsAppClient[jid].Store.ID == nil {
|
|
// Connect WebSocket while also Requesting Pairing Code
|
|
err := WhatsAppClient[jid].Connect()
|
|
if err != nil {
|
|
return "", 0, err
|
|
}
|
|
|
|
// Request Pairing Code
|
|
code, err := WhatsAppClient[jid].PairPhone(jid, true, whatsmeow.PairClientChrome, "Chrome ("+WhatsAppGetUserOS()+")")
|
|
if err != nil {
|
|
return "", 0, err
|
|
}
|
|
|
|
return code, 160, nil
|
|
} else {
|
|
// Device ID is Exist
|
|
// Reconnect WebSocket
|
|
err := WhatsAppReconnect(jid)
|
|
if err != nil {
|
|
return "", 0, err
|
|
}
|
|
|
|
return "WhatsApp Client is Reconnected", 0, nil
|
|
}
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", 0, errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppReconnect(jid string) error {
|
|
if WhatsAppClient[jid] != nil {
|
|
// Make Sure WebSocket Connection is Disconnected
|
|
WhatsAppClient[jid].Disconnect()
|
|
|
|
// Make Sure Store ID is not Empty
|
|
// To do Reconnection
|
|
if WhatsAppClient[jid] != nil {
|
|
err := WhatsAppClient[jid].Connect()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
return errors.New("WhatsApp Client Store ID is Empty, Please Re-Login and Scan QR Code Again")
|
|
}
|
|
|
|
return errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppLogout(jid string) error {
|
|
if WhatsAppClient[jid] != nil {
|
|
// Make Sure Store ID is not Empty
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Set WhatsApp Client Presence to Unavailable
|
|
WhatsAppPresence(jid, false)
|
|
|
|
// Logout WhatsApp Client and Disconnect from WebSocket
|
|
err = WhatsAppClient[jid].Logout()
|
|
if err != nil {
|
|
// Force Disconnect
|
|
WhatsAppClient[jid].Disconnect()
|
|
|
|
// Manually Delete Device from Datastore Store
|
|
err = WhatsAppClient[jid].Store.Delete()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
// Free WhatsApp Client Map
|
|
WhatsAppClient[jid] = nil
|
|
delete(WhatsAppClient, jid)
|
|
|
|
return nil
|
|
}
|
|
|
|
return errors.New("WhatsApp Client Store ID is Empty, Please Re-Login and Scan QR Code Again")
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppIsClientOK(jid string) error {
|
|
// Make Sure WhatsApp Client is Connected
|
|
if !WhatsAppClient[jid].IsConnected() {
|
|
return errors.New("WhatsApp Client is not Connected")
|
|
}
|
|
|
|
// Make Sure WhatsApp Client is Logged In
|
|
if !WhatsAppClient[jid].IsLoggedIn() {
|
|
return errors.New("WhatsApp Client is not Logged In")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func WhatsAppGetJID(jid string, id string) types.JID {
|
|
if WhatsAppClient[jid] != nil {
|
|
var ids []string
|
|
|
|
ids = append(ids, "+"+id)
|
|
infos, err := WhatsAppClient[jid].IsOnWhatsApp(ids)
|
|
if err == nil {
|
|
// If WhatsApp ID is Registered Then
|
|
// Return ID Information
|
|
if infos[0].IsIn {
|
|
return infos[0].JID
|
|
}
|
|
}
|
|
}
|
|
|
|
// Return Empty ID Information
|
|
return types.EmptyJID
|
|
}
|
|
|
|
func WhatsAppCheckJID(jid string, id string) (types.JID, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
// Compose New Remote JID
|
|
remoteJID := WhatsAppComposeJID(id)
|
|
if remoteJID.Server != types.GroupServer {
|
|
// Validate JID if Remote JID is not Group JID
|
|
if WhatsAppGetJID(jid, remoteJID.String()).IsEmpty() {
|
|
return types.EmptyJID, errors.New("WhatsApp Personal ID is Not Registered")
|
|
}
|
|
}
|
|
|
|
// Return Remote ID Information
|
|
return remoteJID, nil
|
|
}
|
|
|
|
// Return Empty ID Information
|
|
return types.EmptyJID, nil
|
|
}
|
|
|
|
func WhatsAppComposeJID(id string) types.JID {
|
|
// Decompose WhatsApp ID First Before Recomposing
|
|
id = WhatsAppDecomposeJID(id)
|
|
|
|
// Check if ID is Group or Not By Detecting '-' for Old Group ID
|
|
// Or By ID Length That Should be 18 Digits or More
|
|
if strings.ContainsRune(id, '-') || len(id) >= 18 {
|
|
// Return New Group User JID
|
|
return types.NewJID(id, types.GroupServer)
|
|
}
|
|
|
|
// Return New Standard User JID
|
|
return types.NewJID(id, types.DefaultUserServer)
|
|
}
|
|
|
|
func WhatsAppDecomposeJID(id string) string {
|
|
// Check if WhatsApp ID Contains '@' Symbol
|
|
if strings.ContainsRune(id, '@') {
|
|
// Split WhatsApp ID Based on '@' Symbol
|
|
// and Get Only The First Section Before The Symbol
|
|
buffers := strings.Split(id, "@")
|
|
id = buffers[0]
|
|
}
|
|
|
|
// Check if WhatsApp ID First Character is '+' Symbol
|
|
if id[0] == '+' {
|
|
// Remove '+' Symbol from WhatsApp ID
|
|
id = id[1:]
|
|
}
|
|
|
|
return id
|
|
}
|
|
|
|
func WhatsAppPresence(jid string, isAvailable bool) {
|
|
if isAvailable {
|
|
_ = WhatsAppClient[jid].SendPresence(types.PresenceAvailable)
|
|
} else {
|
|
_ = WhatsAppClient[jid].SendPresence(types.PresenceUnavailable)
|
|
}
|
|
}
|
|
|
|
func WhatsAppComposeStatus(jid string, rjid types.JID, isComposing bool, isAudio bool) {
|
|
// Set Compose Status
|
|
var typeCompose types.ChatPresence
|
|
if isComposing {
|
|
typeCompose = types.ChatPresenceComposing
|
|
} else {
|
|
typeCompose = types.ChatPresencePaused
|
|
}
|
|
|
|
// Set Compose Media Audio (Recording) or Text (Typing)
|
|
var typeComposeMedia types.ChatPresenceMedia
|
|
if isAudio {
|
|
typeComposeMedia = types.ChatPresenceMediaAudio
|
|
} else {
|
|
typeComposeMedia = types.ChatPresenceMediaText
|
|
}
|
|
|
|
// Send Chat Compose Status
|
|
_ = WhatsAppClient[jid].SendChatPresence(rjid, typeCompose, typeComposeMedia)
|
|
}
|
|
|
|
func WhatsAppCheckRegistered(jid string, id string) error {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, id)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Not Empty or It is Not Group ID
|
|
if remoteJID.IsEmpty() || remoteJID.Server == types.GroupServer {
|
|
return errors.New("WhatsApp Personal ID is Not Registered")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendText(ctx context.Context, jid string, rjid string, message string) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgContent := &waproto.Message{
|
|
Conversation: proto.String(message),
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendLocation(ctx context.Context, jid string, rjid string, latitude float64, longitude float64) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgContent := &waproto.Message{
|
|
LocationMessage: &waproto.LocationMessage{
|
|
DegreesLatitude: proto.Float64(latitude),
|
|
DegreesLongitude: proto.Float64(longitude),
|
|
},
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendDocument(ctx context.Context, jid string, rjid string, fileBytes []byte, fileType string, fileName string) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Upload File to WhatsApp Storage Server
|
|
fileUploaded, err := WhatsAppClient[jid].Upload(ctx, fileBytes, whatsmeow.MediaDocument)
|
|
if err != nil {
|
|
return "", errors.New("Error While Uploading Media to WhatsApp Server")
|
|
}
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgContent := &waproto.Message{
|
|
DocumentMessage: &waproto.DocumentMessage{
|
|
Url: proto.String(fileUploaded.URL),
|
|
DirectPath: proto.String(fileUploaded.DirectPath),
|
|
Mimetype: proto.String(fileType),
|
|
Title: proto.String(fileName),
|
|
FileName: proto.String(fileName),
|
|
FileLength: proto.Uint64(fileUploaded.FileLength),
|
|
FileSha256: fileUploaded.FileSHA256,
|
|
FileEncSha256: fileUploaded.FileEncSHA256,
|
|
MediaKey: fileUploaded.MediaKey,
|
|
},
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendImage(ctx context.Context, jid string, rjid string, imageBytes []byte, imageType string, imageCaption string, isViewOnce bool) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Issue #7 Old Version Client Cannot Render WebP Format
|
|
// If MIME Type is "image/webp" Then Convert it as PNG
|
|
isWhatsAppImageConvertWebP, err := env.GetEnvBool("WHATSAPP_MEDIA_IMAGE_CONVERT_WEBP")
|
|
if err != nil {
|
|
isWhatsAppImageConvertWebP = false
|
|
}
|
|
|
|
if imageType == "image/webp" && isWhatsAppImageConvertWebP {
|
|
imgConvDecode, err := imgconv.Decode(bytes.NewReader(imageBytes))
|
|
if err != nil {
|
|
return "", errors.New("Error While Decoding Convert Image Stream")
|
|
}
|
|
|
|
imgConvEncode := new(bytes.Buffer)
|
|
|
|
err = imgconv.Write(imgConvEncode, imgConvDecode, &imgconv.FormatOption{Format: imgconv.PNG})
|
|
if err != nil {
|
|
return "", errors.New("Error While Encoding Convert Image Stream")
|
|
}
|
|
|
|
imageBytes = imgConvEncode.Bytes()
|
|
imageType = "image/png"
|
|
}
|
|
|
|
// If WhatsApp Media Compression Enabled
|
|
// Then Resize The Image to Width 1024px and Preserve Aspect Ratio
|
|
isWhatsAppImageCompression, err := env.GetEnvBool("WHATSAPP_MEDIA_IMAGE_COMPRESSION")
|
|
if err != nil {
|
|
isWhatsAppImageCompression = false
|
|
}
|
|
|
|
if isWhatsAppImageCompression {
|
|
imgResizeDecode, err := imgconv.Decode(bytes.NewReader(imageBytes))
|
|
if err != nil {
|
|
return "", errors.New("Error While Decoding Resize Image Stream")
|
|
}
|
|
|
|
imgResizeEncode := new(bytes.Buffer)
|
|
|
|
err = imgconv.Write(imgResizeEncode,
|
|
imgconv.Resize(imgResizeDecode, &imgconv.ResizeOption{Width: 1024}),
|
|
&imgconv.FormatOption{})
|
|
|
|
if err != nil {
|
|
return "", errors.New("Error While Encoding Resize Image Stream")
|
|
}
|
|
|
|
imageBytes = imgResizeEncode.Bytes()
|
|
}
|
|
|
|
// Creating Image JPEG Thumbnail
|
|
// With Permanent Width 640px and Preserve Aspect Ratio
|
|
imgThumbDecode, err := imgconv.Decode(bytes.NewReader(imageBytes))
|
|
if err != nil {
|
|
return "", errors.New("Error While Decoding Thumbnail Image Stream")
|
|
}
|
|
|
|
imgThumbEncode := new(bytes.Buffer)
|
|
|
|
err = imgconv.Write(imgThumbEncode,
|
|
imgconv.Resize(imgThumbDecode, &imgconv.ResizeOption{Width: 72}),
|
|
&imgconv.FormatOption{Format: imgconv.JPEG})
|
|
|
|
if err != nil {
|
|
return "", errors.New("Error While Encoding Thumbnail Image Stream")
|
|
}
|
|
|
|
// Upload Image to WhatsApp Storage Server
|
|
imageUploaded, err := WhatsAppClient[jid].Upload(ctx, imageBytes, whatsmeow.MediaImage)
|
|
if err != nil {
|
|
return "", errors.New("Error While Uploading Media to WhatsApp Server")
|
|
}
|
|
|
|
// Upload Image Thumbnail to WhatsApp Storage Server
|
|
imageThumbUploaded, err := WhatsAppClient[jid].Upload(ctx, imgThumbEncode.Bytes(), whatsmeow.MediaLinkThumbnail)
|
|
if err != nil {
|
|
return "", errors.New("Error while Uploading Image Thumbnail to WhatsApp Server")
|
|
}
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgContent := &waproto.Message{
|
|
ImageMessage: &waproto.ImageMessage{
|
|
Url: proto.String(imageUploaded.URL),
|
|
DirectPath: proto.String(imageUploaded.DirectPath),
|
|
Mimetype: proto.String(imageType),
|
|
Caption: proto.String(imageCaption),
|
|
FileLength: proto.Uint64(imageUploaded.FileLength),
|
|
FileSha256: imageUploaded.FileSHA256,
|
|
FileEncSha256: imageUploaded.FileEncSHA256,
|
|
MediaKey: imageUploaded.MediaKey,
|
|
JpegThumbnail: imgThumbEncode.Bytes(),
|
|
ThumbnailDirectPath: &imageThumbUploaded.DirectPath,
|
|
ThumbnailSha256: imageThumbUploaded.FileSHA256,
|
|
ThumbnailEncSha256: imageThumbUploaded.FileEncSHA256,
|
|
ViewOnce: proto.Bool(isViewOnce),
|
|
},
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendAudio(ctx context.Context, jid string, rjid string, audioBytes []byte, audioType string) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppComposeStatus(jid, remoteJID, true, true)
|
|
defer WhatsAppComposeStatus(jid, remoteJID, false, true)
|
|
|
|
// Upload Audio to WhatsApp Storage Server
|
|
audioUploaded, err := WhatsAppClient[jid].Upload(ctx, audioBytes, whatsmeow.MediaAudio)
|
|
if err != nil {
|
|
return "", errors.New("Error While Uploading Media to WhatsApp Server")
|
|
}
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgContent := &waproto.Message{
|
|
AudioMessage: &waproto.AudioMessage{
|
|
Url: proto.String(audioUploaded.URL),
|
|
DirectPath: proto.String(audioUploaded.DirectPath),
|
|
Mimetype: proto.String(audioType),
|
|
FileLength: proto.Uint64(audioUploaded.FileLength),
|
|
FileSha256: audioUploaded.FileSHA256,
|
|
FileEncSha256: audioUploaded.FileEncSHA256,
|
|
MediaKey: audioUploaded.MediaKey,
|
|
},
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendVideo(ctx context.Context, jid string, rjid string, videoBytes []byte, videoType string, videoCaption string, isViewOnce bool) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Upload Video to WhatsApp Storage Server
|
|
videoUploaded, err := WhatsAppClient[jid].Upload(ctx, videoBytes, whatsmeow.MediaVideo)
|
|
if err != nil {
|
|
return "", errors.New("Error While Uploading Media to WhatsApp Server")
|
|
}
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgContent := &waproto.Message{
|
|
VideoMessage: &waproto.VideoMessage{
|
|
Url: proto.String(videoUploaded.URL),
|
|
DirectPath: proto.String(videoUploaded.DirectPath),
|
|
Mimetype: proto.String(videoType),
|
|
Caption: proto.String(videoCaption),
|
|
FileLength: proto.Uint64(videoUploaded.FileLength),
|
|
FileSha256: videoUploaded.FileSHA256,
|
|
FileEncSha256: videoUploaded.FileEncSHA256,
|
|
MediaKey: videoUploaded.MediaKey,
|
|
ViewOnce: proto.Bool(isViewOnce),
|
|
},
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendContact(ctx context.Context, jid string, rjid string, contactName string, contactNumber string) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgVCard := fmt.Sprintf("BEGIN:VCARD\nVERSION:3.0\nN:;%v;;;\nFN:%v\nTEL;type=CELL;waid=%v:+%v\nEND:VCARD",
|
|
contactName, contactName, contactNumber, contactNumber)
|
|
msgContent := &waproto.Message{
|
|
ContactMessage: &waproto.ContactMessage{
|
|
DisplayName: proto.String(contactName),
|
|
Vcard: proto.String(msgVCard),
|
|
},
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendLink(ctx context.Context, jid string, rjid string, linkCaption string, linkURL string) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
var urlTitle, urlDescription string
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Get URL Metadata
|
|
urlResponse, err := http.Get(linkURL)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer urlResponse.Body.Close()
|
|
|
|
if urlResponse.StatusCode != 200 {
|
|
return "", errors.New("Error While Fetching URL Metadata!")
|
|
}
|
|
|
|
// Query URL Metadata
|
|
docData, err := goquery.NewDocumentFromReader(urlResponse.Body)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
docData.Find("title").Each(func(index int, element *goquery.Selection) {
|
|
urlTitle = element.Text()
|
|
})
|
|
|
|
docData.Find("meta[name='description']").Each(func(index int, element *goquery.Selection) {
|
|
urlDescription, _ = element.Attr("content")
|
|
})
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgText := linkURL
|
|
|
|
if len(strings.TrimSpace(linkCaption)) > 0 {
|
|
msgText = fmt.Sprintf("%s\n%s", linkCaption, linkURL)
|
|
}
|
|
|
|
msgContent := &waproto.Message{
|
|
ExtendedTextMessage: &waproto.ExtendedTextMessage{
|
|
Text: proto.String(msgText),
|
|
Title: proto.String(urlTitle),
|
|
MatchedText: proto.String(linkURL),
|
|
CanonicalUrl: proto.String(linkURL),
|
|
Description: proto.String(urlDescription),
|
|
},
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendSticker(ctx context.Context, jid string, rjid string, stickerBytes []byte) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
stickerConvDecode, err := imgconv.Decode(bytes.NewReader(stickerBytes))
|
|
if err != nil {
|
|
return "", errors.New("Error While Decoding Convert Sticker Stream")
|
|
}
|
|
|
|
stickerConvResize := imgconv.Resize(stickerConvDecode, &imgconv.ResizeOption{Width: 512, Height: 512})
|
|
stickerConvEncode := new(bytes.Buffer)
|
|
|
|
err = webp.Encode(stickerConvEncode, stickerConvResize)
|
|
if err != nil {
|
|
return "", errors.New("Error While Encoding Convert Sticker Stream")
|
|
}
|
|
|
|
stickerBytes = stickerConvEncode.Bytes()
|
|
|
|
// Upload Image to WhatsApp Storage Server
|
|
stickerUploaded, err := WhatsAppClient[jid].Upload(ctx, stickerBytes, whatsmeow.MediaImage)
|
|
if err != nil {
|
|
return "", errors.New("Error While Uploading Media to WhatsApp Server")
|
|
}
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
msgContent := &waproto.Message{
|
|
StickerMessage: &waproto.StickerMessage{
|
|
Url: proto.String(stickerUploaded.URL),
|
|
DirectPath: proto.String(stickerUploaded.DirectPath),
|
|
Mimetype: proto.String("image/webp"),
|
|
FileLength: proto.Uint64(stickerUploaded.FileLength),
|
|
FileSha256: stickerUploaded.FileSHA256,
|
|
FileEncSha256: stickerUploaded.FileEncSHA256,
|
|
MediaKey: stickerUploaded.MediaKey,
|
|
},
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, msgContent, msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppSendPoll(ctx context.Context, jid string, rjid string, question string, options []string, isMultiAnswer bool) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Check if Poll Allow Multiple Answer
|
|
pollAnswerMax := 1
|
|
if isMultiAnswer {
|
|
pollAnswerMax = len(options)
|
|
}
|
|
|
|
// Compose WhatsApp Proto
|
|
msgExtra := whatsmeow.SendRequestExtra{
|
|
ID: WhatsAppClient[jid].GenerateMessageID(),
|
|
}
|
|
|
|
// Send WhatsApp Message Proto
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, WhatsAppClient[jid].BuildPollCreation(question, options, pollAnswerMax), msgExtra)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgExtra.ID, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppMessageEdit(ctx context.Context, jid string, rjid string, msgid string, message string) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Compose WhatsApp Proto
|
|
msgContent := &waproto.Message{
|
|
Conversation: proto.String(message),
|
|
}
|
|
|
|
// Send WhatsApp Message Proto in Edit Mode
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, WhatsAppClient[jid].BuildEdit(remoteJID, msgid, msgContent))
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return msgid, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppMessageDelete(ctx context.Context, jid string, rjid string, msgid string) error {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
remoteJID, err := WhatsAppCheckJID(jid, rjid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Set Chat Presence
|
|
WhatsAppPresence(jid, true)
|
|
WhatsAppComposeStatus(jid, remoteJID, true, false)
|
|
defer func() {
|
|
WhatsAppComposeStatus(jid, remoteJID, false, false)
|
|
WhatsAppPresence(jid, false)
|
|
}()
|
|
|
|
// Send WhatsApp Message Proto in Revoke Mode
|
|
_, err = WhatsAppClient[jid].SendMessage(ctx, remoteJID, WhatsAppClient[jid].BuildRevoke(remoteJID, types.EmptyJID, msgid))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppGroupGet(jid string) ([]types.GroupInfo, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Get Joined Group List
|
|
groups, err := WhatsAppClient[jid].GetJoinedGroups()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Put Group Information in List
|
|
var gids []types.GroupInfo
|
|
for _, group := range groups {
|
|
gids = append(gids, *group)
|
|
}
|
|
|
|
// Return Group Information List
|
|
return gids, nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return nil, errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppGroupJoin(jid string, link string) (string, error) {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Join Group By Invitation Link
|
|
gid, err := WhatsAppClient[jid].JoinGroupWithLink(link)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// Return Joined Group ID
|
|
return gid.String(), nil
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return "", errors.New("WhatsApp Client is not Valid")
|
|
}
|
|
|
|
func WhatsAppGroupLeave(jid string, gjid string) error {
|
|
if WhatsAppClient[jid] != nil {
|
|
var err error
|
|
|
|
// Make Sure WhatsApp Client is OK
|
|
err = WhatsAppIsClientOK(jid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Registered
|
|
groupJID, err := WhatsAppCheckJID(jid, gjid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Make Sure WhatsApp ID is Group Server
|
|
if groupJID.Server != types.GroupServer {
|
|
return errors.New("WhatsApp Group ID is Not Group Server")
|
|
}
|
|
|
|
// Leave Group By Group ID
|
|
return WhatsAppClient[jid].LeaveGroup(groupJID)
|
|
}
|
|
|
|
// Return Error WhatsApp Client is not Valid
|
|
return errors.New("WhatsApp Client is not Valid")
|
|
}
|