123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488 |
- package main
- import (
- "fmt"
- "runtime"
- "sort"
- "strconv"
- "strings"
- "sync"
- "time"
- "github.com/bashery/botline/oop"
- talkservice "github.com/bashery/linethrift"
- )
- func checkunbanbots(client *oop.Account, to string, targets []string, pl int, sinder string) {
- room := oop.GetRoom(to)
- target := []string{}
- for _, from := range targets {
- if Banned.GetFuck(from) {
- target = append(target, from)
- Banned.DelFuck(from)
- } else if Banned.GetBan(from) {
- target = append(target, from)
- Banned.DelBan(from)
- } else if InArray2(room.Gban, from) {
- target = append(target, from)
- Ungban(to, from)
- } else if Banned.GetMute(from) {
- target = append(target, from)
- Banned.DelMute(from)
- }
- }
- if len(target) != 0 {
- list := ""
- if pl == 1 {
- list += "Removed from banlist:\n"
- } else if pl == 2 {
- list += "Removed from fucklist:\n"
- } else if pl == 3 {
- list += "Removed from gbanlist:\n"
- } else if pl == 4 {
- list += "Removed from mutelist:\n"
- }
- for i := range target {
- list += "\n" + strconv.Itoa(i+1) + ". " + "@!"
- }
- client.SendPollMention(to, list, target)
- if pl == 1 {
- logAccess(client, to, sinder, "unban", target, 2)
- } else if pl == 2 {
- logAccess(client, to, sinder, "unfuck", target, 2)
- } else if pl == 3 {
- logAccess(client, to, sinder, "ungban", target, 2)
- } else if pl == 4 {
- logAccess(client, to, sinder, "unmute", target, 2)
- }
- } else {
- list := ""
- if pl == 1 {
- list += "User(s) not in banlist.\n"
- } else if pl == 2 {
- list += "User(s) not in fucklist.\n"
- } else if pl == 3 {
- list += "User(s) not in gbanlist.\n"
- } else if pl == 4 {
- list += "User(s) not in mutelist.\n"
- }
- client.SendMessage(to, list)
- }
- }
- func CheckExprd(s *oop.Account, to string, sender string) bool {
- base := time.Date(time.Now().Year(), time.Now().Month(), time.Now().Day(), time.Now().Hour(), time.Now().Minute(), time.Now().Second(), 0, time.UTC)
- d := fmt.Sprintf("%v", Data.Dalltime)
- has := strings.Split(d, "-")
- has2 := strings.Split(has[2], "T")
- yy, _ := strconv.Atoi(has[0])
- mm, _ := strconv.Atoi(has[1])
- timeup, _ := strconv.Atoi(has2[0])
- batas := time.Date(yy, time.Month(mm), timeup, 00, 00, 0, 0, time.UTC)
- if batas.Before(base) {
- if !SendMycreator(sender) {
- s.SendMessage(to, "Sorry your bots is expired, Please Contact with our Creator to renew your squad. ;-)")
- return false
- }
- return true
- }
- return true
- }
- func fmtDurations(d time.Duration) string {
- d = d.Round(time.Second)
- x := d
- h := d / time.Hour
- d -= h * time.Hour
- m := d / time.Minute
- d -= m * time.Minute
- if x < 60*time.Second {
- return fmt.Sprintf("%v", x)
- } else if x < 3600*time.Second {
- return fmt.Sprintf("%02dMin", m)
- } else if x < 86400*time.Second {
- return fmt.Sprintf("%02dH %02dMin", h%24, m)
- } else {
- return fmt.Sprintf("%02dD %02dH %02dMin", h/24, h%24, m)
- }
- }
- func CekDuedate() time.Time {
- bod := string(Data.Dalltime)
- date, _ := time.Parse(time.RFC3339, bod)
- return date
- }
- func CheckLastActive(client *oop.Account, targets string) string {
- list := ""
- mek, tu := LastActive.Get(targets)
- if tu {
- asu := mek.(*talkservice.Operation)
- if asu.Type == 55 {
- names1, _ := client.GetGroupMember(asu.Param1)
- cok := asu.CreatedTime / 1000
- i, _ := strconv.ParseInt(fmt.Sprintf("%v", cok), 10, 64)
- tm := time.Unix(i, 0)
- ss := time.Since(tm)
- sp := fmtDuration(ss)
- list += "- LastActive: " + sp + "\n- Type: Read Message\n- Group: " + names1 + "\n\n"
- } else if asu.Type == 124 {
- names1, _ := client.GetGroupMember(asu.Param1)
- cok := asu.CreatedTime / 1000
- i, _ := strconv.ParseInt(fmt.Sprintf("%v", cok), 10, 64)
- tm := time.Unix(i, 0)
- ss := time.Since(tm)
- sp := fmtDuration(ss)
- invites := strings.Split(asu.Param3, "\x1e")
- nos := 0
- her := ""
- for _, ampemng := range invites {
- nos += 1
- pr, _ := client.GetContact(ampemng)
- her += fmt.Sprintf("\n %v. %v", nos, pr.DisplayName)
- }
- list += "- LastActive: " + sp + "\n- Type: Invited member\n- Group: " + names1 + "\n- Target: " + her + "\n\n"
- } else if asu.Type == 133 {
- names1, _ := client.GetGroupMember(asu.Param1)
- cok := asu.CreatedTime / 1000
- i, _ := strconv.ParseInt(fmt.Sprintf("%v", cok), 10, 64)
- tm := time.Unix(i, 0)
- ss := time.Since(tm)
- sp := fmtDuration(ss)
- pr, _ := client.GetContact(asu.Param3)
- list += "- LastActive: " + sp + "\n- Type : Kick member\n- Group: " + names1 + "\n- Target: " + pr.DisplayName + "\n\n"
- } else if asu.Type == 126 {
- names1, _ := client.GetGroupMember(asu.Param1)
- cok := asu.CreatedTime / 1000
- i, _ := strconv.ParseInt(fmt.Sprintf("%v", cok), 10, 64)
- tm := time.Unix(i, 0)
- ss := time.Since(tm)
- sp := fmtDuration(ss)
- pr, _ := client.GetContact(asu.Param3)
- list += "- LastActive: " + sp + "\n- Type: Cancel member\n- Group: " + names1 + "\n- Target: " + pr.DisplayName + "\n\n"
- } else if asu.Type == 26 {
- msg := asu.Message
- if msg.ToType == 2 {
- names1, _ := client.GetGroupMember(msg.To)
- cok := asu.CreatedTime / 1000
- i, _ := strconv.ParseInt(fmt.Sprintf("%v", cok), 10, 64)
- tm := time.Unix(i, 0)
- ss := time.Since(tm)
- sp := fmtDuration(ss)
- tx := ""
- if msg.ContentType == 0 {
- tx = msg.Text
- } else {
- tx = "Non Text Message"
- }
- list += "- LastActive: " + sp + "\n- Type: Send Message\n- Group: " + names1 + "\n- Message: " + tx + "\n\n"
- }
- } else if asu.Type == 130 {
- names1, _ := client.GetGroupMember(asu.Param1)
- cok := asu.CreatedTime / 1000
- i, _ := strconv.ParseInt(fmt.Sprintf("%v", cok), 10, 64)
- tm := time.Unix(i, 0)
- ss := time.Since(tm)
- sp := fmtDuration(ss)
- list += "- LastActive: " + sp + "\n- Type: Join Group\n- Group: " + names1 + "\n\n"
- } else if asu.Type == 122 {
- names1, _ := client.GetGroupMember(asu.Param1)
- cok := asu.CreatedTime / 1000
- i, _ := strconv.ParseInt(fmt.Sprintf("%v", cok), 10, 64)
- tm := time.Unix(i, 0)
- ss := time.Since(tm)
- sp := fmtDuration(ss)
- var ti string
- if asu.Param3 == "4" {
- g, _ := client.GetGroup3(asu.Param1)
- if g.Extra.GroupExtra.PreventedJoinByTicket == false {
- ti = "Open qr"
- } else {
- ti = "Close qr"
- }
- } else if asu.Param3 == "1" {
- ti = "Change Group Name"
- }
- list += "- LastActive: " + sp + "\n- Type: Update Group\n- Group: " + names1 + "\n- Type: " + ti + "\n\n"
- }
- }
- return list
- }
- func InArray2(ArrList []string, rstr string) bool {
- for _, x := range ArrList {
- if x == rstr {
- return true
- }
- }
- return false
- }
- func Checklistaccess(client *oop.Account, group string, targets []string, pl int, sinder string) {
- Room := oop.GetRoom(group)
- if pl == 12 {
- countr := 0
- countr1 := 0
- list := "Account Info: \n\n"
- for n, xx := range targets {
- new := client.Getcontactuser(xx)
- if new != nil {
- list += "Name: Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += fmt.Sprintf("Name: %v \n", x.DisplayName)
- status := "status: None\n\n"
- if InArray2(MAKERS, targets[n]) {
- status = "status: Makers\n\n"
- } else if UserBot.GetCreator(targets[n]) {
- status = "status: Creator\n\n"
- } else if UserBot.GetBuyer(targets[n]) {
- status = "status: Buyer\n\n"
- } else if UserBot.GetOwner(targets[n]) {
- status = "status: Owner\n\n"
- } else if UserBot.GetMaster(targets[n]) {
- status = "status: Master\n\n"
- } else if UserBot.GetAdmin(targets[n]) {
- status = "status: Admin\n\n"
- } else if InArray2(Room.Gowner, targets[n]) {
- status = "status: GroupOwnar\n\n"
- } else if InArray2(Room.Gadmin, targets[n]) {
- status = "status: GroupAdmin\n\n"
- } else if UserBot.GetBot(targets[n]) {
- status = "status: Bot\n\n"
- } else if Banned.GetFuck(targets[n]) {
- status = "status: Fuck\n\n"
- } else if Banned.GetBan(targets[n]) {
- status = "status: Ban\n\n"
- } else if Banned.GetMute(targets[n]) {
- status = "status: Mute\n\n"
- } else if InArray2(Room.Gban, targets[n]) {
- status = "status: Groupban\n\n"
- } else if InArray2(Squadlist, targets[n]) {
- status = "status: My team\n\n"
- } else if UserBot.GetSeller(targets[n]) {
- status = "status: My Seller\n\n"
- }
- list += status
- if !InArray2(checkHaid, targets[n]) {
- new := CheckLastActive(client, targets[n])
- list += new
- }
- listGroup := "\nMember of:\n"
- listPinde := "\nPending of:\n"
- grs, _ := client.GetGroupIdsJoined()
- groups, _ := client.GetGroups(grs)
- for _, x := range groups {
- if oop.IsMembers(client, x.ChatMid, targets[n]) == true {
- countr = countr + 1
- nm, _, _ := client.GetChatList(x.ChatMid)
- listGroup += nm + "\n"
- }
- if oop.IsPending(client, x.ChatMid, targets[n]) == true {
- countr1 = countr1 + 1
- nm, _, _ := client.GetChatList(x.ChatMid)
- listPinde += nm + "\n"
- }
- }
- if countr != 0 {
- list += fmt.Sprintf("Groups: %v\n", countr)
- } else {
- list += "Groups: 0\n"
- }
- if countr1 != 0 {
- list += fmt.Sprintf("Pendings: %v\n", countr1)
- } else {
- list += "Pendings: 0\n"
- }
- if countr != 0 {
- if !InArray2(checkHaid, targets[n]) {
- list += listGroup
- }
- }
- if countr1 != 0 {
- if !InArray2(checkHaid, targets[n]) {
- list += listPinde
- }
- }
- }
- }
- client.SendMessage(group, list)
- } else if pl == 16 {
- list := ""
- for n, xx := range targets {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += fmt.Sprintf("%v. %v\n", n+1, x.DisplayName)
- }
- }
- client.SendMessage(group, list)
- } else if pl == 14 {
- list := ""
- for n, xx := range targets {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += fmt.Sprintf("%v. %v\n_%v\n", n+1, x.DisplayName, targets[n])
- }
- }
- client.SendMessage(group, list)
- } else {
- if len(targets) > 1 {
- creator := []string{}
- buyer := []string{}
- owner := []string{}
- master := []string{}
- admin := []string{}
- gowner := []string{}
- gadmin := []string{}
- squad := []string{}
- bot := []string{}
- ban := []string{}
- fuck := []string{}
- mute := []string{}
- Gban := []string{}
- Glist := []string{}
- Maker := []string{}
- Seller := []string{}
- for _, from := range targets {
- if MemUser(group, from) && !MemBan2(group, from) {
- if !InArray2(Glist, from) {
- Glist = append(Glist, from)
- }
- } else if UserBot.GetCreator(from) {
- creator = append(creator, from)
- } else if UserBot.GetSeller(from) {
- Seller = append(Seller, from)
- } else if InArray2(MAKERS, from) {
- Maker = append(Maker, from)
- } else if UserBot.GetBuyer(from) {
- buyer = append(buyer, from)
- } else if UserBot.GetOwner(from) {
- owner = append(owner, from)
- } else if UserBot.GetMaster(from) {
- master = append(master, from)
- } else if UserBot.GetAdmin(from) {
- admin = append(admin, from)
- } else if InArray2(Room.Gowner, from) {
- gowner = append(gowner, from)
- } else if InArray2(Room.Gadmin, from) {
- gadmin = append(gadmin, from)
- } else if UserBot.GetBot(from) {
- bot = append(bot, from)
- } else if Banned.GetFuck(from) {
- fuck = append(fuck, from)
- } else if Banned.GetBan(from) {
- ban = append(ban, from)
- } else if Banned.GetMute(from) {
- mute = append(mute, from)
- } else if InArray2(Room.Gban, from) {
- Gban = append(Gban, from)
- } else if InArray2(Squadlist, from) {
- squad = append(squad, from)
- }
- }
- list2 := ""
- if len(Glist) != 0 {
- if pl == 1 {
- list2 += "Promoted as Buyer:\n\n"
- } else if pl == 2 {
- list2 += "Promoted as Owner:\n\n"
- } else if pl == 3 {
- list2 += "Promoted as Master:\n\n"
- } else if pl == 4 {
- list2 += "Promoted as Admin:\n\n"
- } else if pl == 5 {
- list2 += "Promoted as Bot:\n\n"
- } else if pl == 6 {
- list2 += "Promoted as Gowner:\n\n"
- } else if pl == 7 {
- list2 += "Promoted as Gadmin\n\n"
- } else if pl == 8 {
- list2 += "Added to banlist:\n\n"
- } else if pl == 9 {
- list2 += "Added to fucklist:\n\n"
- } else if pl == 10 {
- list2 += "Added to gbanlist:\n\n"
- } else if pl == 11 {
- list2 += "Added to mutelist:\n\n"
- } else if pl == 13 {
- list2 += "Added to Creatorlist:\n\n"
- } else if pl == 17 {
- list2 += "Added to Sellerlist:\n\n"
- }
- for n, xx := range Glist {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list2 += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list2 += rengs + ". " + x.DisplayName + "\n"
- if pl == 1 {
- UserBot.AddBuyer(xx)
- } else if pl == 2 {
- UserBot.AddOwner(xx)
- } else if pl == 13 {
- UserBot.AddCreator(xx)
- } else if pl == 3 {
- UserBot.AddMaster(xx)
- } else if pl == 4 {
- UserBot.AddAdmin(xx)
- } else if pl == 5 {
- UserBot.AddBot(xx)
- } else if pl == 6 {
- Room.Gowner = append(Room.Gowner, xx)
- } else if pl == 7 {
- Room.Gadmin = append(Room.Gadmin, xx)
- } else if pl == 8 {
- Banned.AddBan(xx)
- } else if pl == 9 {
- Banned.AddBan(xx)
- } else if pl == 10 {
- Addgban(xx, group)
- } else if pl == 11 {
- Banned.AddBan(xx)
- } else if pl == 17 {
- UserBot.AddSeller(xx)
- }
- }
- }
- if pl == 2 {
- logAccess(client, group, sinder, "owner", Glist, 2)
- } else if pl == 3 {
- logAccess(client, group, sinder, "master", Glist, 2)
- } else if pl == 4 {
- logAccess(client, group, sinder, "admin", Glist, 2)
- } else if pl == 5 {
- logAccess(client, group, sinder, "bot", Glist, 2)
- } else if pl == 6 {
- logAccess(client, group, sinder, "gowner", Glist, 2)
- } else if pl == 7 {
- logAccess(client, group, sinder, "gadmin", Glist, 2)
- } else if pl == 8 {
- logAccess(client, group, sinder, "ban", Glist, 2)
- } else if pl == 9 {
- logAccess(client, group, sinder, "fuck", Glist, 2)
- } else if pl == 10 {
- logAccess(client, group, sinder, "gban", Glist, 2)
- } else if pl == 11 {
- logAccess(client, group, sinder, "mute", Glist, 2)
- }
- }
- list := "Users have access:\n"
- if len(creator) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐๐ฒ๐ฎ๐บ:\n"
- for n, xx := range creator {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(Seller) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ฆ๐ฒ๐น๐น๐ฒ๐ฟ:\n"
- for n, xx := range Seller {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(Maker) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐๐ฒ๐ฎ๐บ:\n"
- for n, xx := range Maker {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(buyer) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ฏ๐๐๐ฒ๐ฟ๐:\n"
- for n, xx := range buyer {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(owner) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ผ๐๐ป๐ฒ๐ฟ๐:\n"
- for n, xx := range owner {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(master) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐บ๐ฎ๐๐๐ฒ๐ฟ๐:\n"
- for n, xx := range master {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(admin) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ฎ๐ฑ๐บ๐ถ๐ป๐:\n"
- for n, xx := range admin {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(gowner) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ด๐ผ๐๐ป๐ฒ๐ฟ๐:\n"
- for n, xx := range gowner {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(gadmin) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ด๐ฎ๐ฑ๐บ๐ถ๐ป๐:\n"
- for n, xx := range gadmin {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(bot) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ฏ๐ผ๐๐น๐ถ๐๐\n"
- for n, xx := range bot {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(squad) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐๐พ๐๐ฎ๐ฑ:\n"
- for n, xx := range squad {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(ban) != 0 {
- list += "๐๐
๐ถ๐๐.๐ถ๐ป ๐ฏ๐ฎ๐ป๐น๐ถ๐๐:\n"
- for n, xx := range ban {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(fuck) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ณ๐๐ฐ๐ธ๐น๐ถ๐๐:\n"
- for n, xx := range fuck {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(Gban) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ด๐ฏ๐ฎ๐ป๐น๐ถ๐๐:\n\n"
- for n, xx := range Gban {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if len(mute) != 0 {
- list += "\n๐๐
๐ถ๐๐ ๐ถ๐ป ๐ ๐๐๐ฒ๐น๐ถ๐๐:\n\n"
- for n, xx := range mute {
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(xx)
- if new != nil {
- list += rengs + ". Closed Account \n"
- } else {
- x, _ := client.GetContact(xx)
- list += rengs + ". " + x.DisplayName + "\n"
- }
- }
- }
- if list != "Users have access:\n" {
- if list2 != "" {
- list2 += "\n"
- }
- client.SendMessage(group, list2+list)
- } else {
- client.SendMessage(group, list2)
- }
- } else {
- list := ""
- for n, from := range targets {
- if InArray2(MAKERS, from) {
- list += "User have access exist in taem list."
- } else if UserBot.GetCreator(from) {
- list += "User have access exist in Creator list."
- } else if UserBot.GetSeller(from) {
- list += "User have access exist in seller list."
- } else if UserBot.GetBuyer(from) {
- list += "User have access exist in buyer list."
- } else if UserBot.GetOwner(from) {
- list += "User have access exist in owner list."
- } else if UserBot.GetMaster(from) {
- list += "User have access exist in master list."
- } else if UserBot.GetAdmin(from) {
- list += "User have access exist in admin list."
- } else if InArray2(Room.Gowner, from) {
- list += "User have access exist in gowner list."
- } else if InArray2(Room.Gadmin, from) {
- list += "User have access exist in gadmin list."
- } else if UserBot.GetBot(from) {
- list += "User have access exist in bot list."
- } else if Banned.GetFuck(from) {
- list += "User have access exist in fuck list."
- } else if Banned.GetBan(from) {
- list += "User have access exist in ban list."
- } else if InArray2(Room.Gban, from) {
- list += "User have access exist in gban list."
- } else if InArray2(Squadlist, from) {
- list += "User have access exist in squad list."
- } else if Banned.GetMute(from) {
- list += "User have access exist in mute list."
- } else if MemUser(group, from) && !MemBan2(group, from) {
- if pl == 1 {
- list += "Promoted as Buyer:\n"
- } else if pl == 2 {
- list += "Promoted as Owner:\n"
- } else if pl == 3 {
- list += "Promoted as Master:\n"
- } else if pl == 4 {
- list += "Promoted as Admin:\n"
- } else if pl == 5 {
- list += "Promoted as Bot:\n"
- } else if pl == 6 {
- list += "Promoted as Gowner:\n"
- } else if pl == 7 {
- list += "Promoted as Gadmin:\n"
- } else if pl == 8 {
- list += "Added to banlist:\n"
- } else if pl == 9 {
- list += "Added to fucklist:\n"
- } else if pl == 10 {
- list += "Added to gbanlist:\n"
- } else if pl == 11 {
- list += "Added to mutelist:\n"
- } else if pl == 13 {
- list += "Added to Creatorlist:\n"
- } else if pl == 17 {
- list += "Added to Sellerlist:\n"
- }
- rengs := strconv.Itoa(n + 1)
- new := client.Getcontactuser(from)
- if new != nil {
- list += "\n " + rengs + ". Closed Account"
- } else {
- x, _ := client.GetContact(from)
- list += "\n " + rengs + ". " + x.DisplayName
- if pl == 1 {
- UserBot.AddBuyer(from)
- } else if pl == 2 {
- UserBot.AddOwner(from)
- } else if pl == 3 {
- UserBot.AddMaster(from)
- } else if pl == 4 {
- UserBot.AddAdmin(from)
- } else if pl == 5 {
- UserBot.AddBot(from)
- } else if pl == 6 {
- Room.Gowner = append(Room.Gowner, from)
- } else if pl == 13 {
- UserBot.AddCreator(from)
- } else if pl == 7 {
- Room.Gadmin = append(Room.Gadmin, from)
- } else if pl == 8 {
- autokickban(client, group, from)
- Banned.AddBan(from)
- } else if pl == 9 {
- Banned.AddFuck(from)
- } else if pl == 10 {
- Addgban(from, group)
- } else if pl == 11 {
- Banned.AddMute(from)
- } else if pl == 17 {
- UserBot.AddSeller(from)
- }
- }
- if pl == 2 {
- logAccess(client, group, sinder, "owner", []string{from}, 2)
- } else if pl == 3 {
- logAccess(client, group, sinder, "master", []string{from}, 2)
- } else if pl == 4 {
- logAccess(client, group, sinder, "admin", []string{from}, 2)
- } else if pl == 5 {
- logAccess(client, group, sinder, "bot", []string{from}, 2)
- } else if pl == 6 {
- logAccess(client, group, sinder, "gowner", []string{from}, 2)
- } else if pl == 7 {
- logAccess(client, group, sinder, "gadmin", []string{from}, 2)
- } else if pl == 8 {
- logAccess(client, group, sinder, "ban", []string{from}, 2)
- } else if pl == 9 {
- logAccess(client, group, sinder, "fuck", []string{from}, 2)
- } else if pl == 10 {
- logAccess(client, group, sinder, "gban", []string{from}, 2)
- } else if pl == 11 {
- logAccess(client, group, sinder, "mute", []string{from}, 2)
- }
- }
- }
- client.SendMessage(group, list)
- }
- }
- }
- func GetSquad(tok *oop.Account, to string) []*oop.Account {
- defer panicHandle("GetSquad")
- nm, memlist, invitee := tok.GetChatList(to)
- Bots := []*oop.Account{}
- MIdbot := []string{}
- GoClint := []*oop.Account{}
- Gomid := []string{}
- for _, ym := range memlist {
- if InArray2(Squadlist, ym) {
- idx := GetKorban(ym)
- MIdbot = append(MIdbot, ym)
- Bots = append(Bots, idx)
- }
- }
- room := oop.GetRoom(to)
- room.Name = nm
- for _, ym := range invitee {
- if InArray2(Squadlist, ym) {
- Gomid = append(Gomid, ym)
- idx := GetKorban(ym)
- GoClint = append(GoClint, idx)
- }
- }
- room.AddSquad(MIdbot, Bots, GoClint, Gomid)
- return Bots
- }
- func AutojoinQr(client *oop.Account, to string) {
- defer panicHandle("AutojoinQr")
- ti, err := client.ReissueChatTicket(to)
- if err == nil {
- go client.UpdateChatQrV2(to, false)
- all := []*oop.Account{}
- room := oop.GetRoom(to)
- cuk := room.Client
- for _, x := range ClientBot {
- if !oop.InArrayCl(cuk, x) && !oop.InArrayCl(oop.KickBans, x) && !oop.InArrayCl(room.GoClient, x) {
- all = append(all, x)
- }
- }
- sort.Slice(all, func(i, j int) bool {
- return all[i].KickPoint < all[j].KickPoint
- })
- var wg sync.WaitGroup
- wi := GetSquad(client, to)
- for i := 0; i < len(all); i++ {
- l := all[i]
- if l != client && !oop.InArrayCl(wi, l) {
- wg.Add(1)
- go func() {
- l.AcceptTicket(to, ti)
- wg.Done()
- }()
- }
- }
- wg.Wait()
- client.UpdateChatQrV2(to, true)
- GetSquad(client, to)
- }
- }
- func qrGo(cl *oop.Account, cans []*oop.Account, to string) {
- defer panicHandle("QR_go")
- Room := oop.GetRoom(to)
- mes := make(chan bool)
- go func() {
- err := cl.UpdateChatQrV2(to, false)
- if err != nil {
- mes <- false
- } else {
- mes <- true
- }
- }()
- Room.Qr = false
- var ticket string
- link, err := cl.ReissueChatTicket(to)
- if err == nil {
- ticket = link
- } else {
- ticket = "error"
- }
- var wg sync.WaitGroup
- if ticket != "error" && ticket != "" {
- ok := <-mes
- if !ok {
- return
- }
- for _, cc := range cans {
- wg.Add(1)
- go func(c *oop.Account) {
- err := c.AcceptTicket(to, ticket)
- if err != nil {
- fmt.Println(err)
- }
- wg.Done()
- }(cc)
- }
- wg.Wait()
- Room.Qr = true
- }
- if Room.Qr {
- go func() {
- err := cl.UpdateChatQrV2(to, true)
- if err != nil {
- mes <- true
- } else {
- mes <- false
- }
- }()
- }
- }
- func hstg(to, u string) {
- room := oop.GetRoom(to)
- if !InArray2(room.LeaveBack, u) {
- room.LeaveBack = append(room.LeaveBack, u)
- }
- }
- func RunBot(client *oop.Account, ch chan int) {
- defer panicHandle("RunBot")
- runtime.GOMAXPROCS(cpu)
- client.Revision = -1
- for {
- multiFunc, err := client.FetchOps(25)
- if err != nil || len(multiFunc) == 0 {
- continue
- }
- go func(fetch []*talkservice.Operation) {
- for _, op := range multiFunc {
- if op.Type == 124 {
- runtime.GOMAXPROCS(cpu)
- Optime := op.CreatedTime
- rngcmd := GetComs(4, "invitebot")
- Group, user := op.Param1, op.Param2
- invited := strings.Split(op.Param3, "\x1e")
- Room := oop.GetRoom(Group)
- if InArray2(invited, client.MID) {
- if oop.IoGOBot(Group, client) {
- if InArray2(client.Squads, user) {
- client.AcceptGroupInvitationNormal(Group)
- if client.Limited == false {
- if !InArrayInt64(cekGo, Optime) {
- cekGo = append(cekGo, Optime)
- AcceptJoin(client, Group)
- }
- }
- } else if UserBot.GetBot(user) {
- client.AcceptGroupInvitationNormal(Group)
- if client.Limited == false {
- if !InArrayInt64(cekGo, Optime) {
- cekGo = append(cekGo, Optime)
- AcceptJoin(client, Group)
- }
- }
- } else if GetCodeprem(rngcmd, user, Group) {
- client.AcceptGroupInvitationNormal(Group)
- if client.Limited == false {
- if !InArrayInt64(cekGo, Optime) {
- cekGo = append(cekGo, Optime)
- AcceptJoin(client, Group)
- }
- }
- } else {
- grs, _ := client.GetGroupIdsJoined()
- if InArray2(grs, Group) {
- client.LeaveGroup(Group)
- fl, _ := client.GetAllContactIds()
- if InArray2(fl, user) {
- client.UnFriend(user)
- }
- }
- }
- }
- } else {
- Optime := op.CreatedTime
- if Room.ProInvite {
- if MemUser(Group, user) {
- go func() {
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- Banned.AddBan(user)
- }
- }()
- if filterWar.ceko(Optime) {
- Room.ListInvited = invited
- CancelProtect(client, invited, Group)
- }
- } else {
- if filterWar.ceko(Optime) {
- cancelallcek(client, invited, Group)
- }
- }
- } else {
- if MemBan(Group, user) {
- go func() {
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- }
- }()
- if filterWar.ceko(Optime) {
- BanAll(invited)
- cancelall(client, invited, Group)
- }
- } else {
- if MemUser(Group, user) {
- go func() {
- if filterWar.ceki(user) {
- for _, vo := range invited {
- if MemBan(Group, vo) {
- kickPelaku(client, Group, user)
- Banned.AddBan(user)
- break
- }
- }
- filterWar.deli(user)
- }
- }()
- if filterWar.ceko(Optime) {
- cancelallcek(client, invited, Group)
- }
- }
- }
- }
- }
- if _, ok := filtermsg.Get(Optime); !ok {
- filtermsg.Set(Optime, client)
- LogOp(op, client)
- LogGet(op)
- }
- } else if op.Type == 133 {
- runtime.GOMAXPROCS(cpu)
- Optime := op.CreatedTime
- Group, user, Invited := op.Param1, op.Param2, op.Param3
- Room := oop.GetRoom(Group)
- if client.MID == Invited {
- oop.Gones(Group, client)
- if MemUser(Group, user) {
- Banned.AddBan(user)
- }
- } else if !InArray2(Room.GoMid, client.MID) {
- if InArray2(client.Squads, Invited) {
- if MemUser(Group, user) {
- if oop.IoGOBot(Group, client) {
- Banned.AddBan(user)
- go func() {
- if filterWar.cek(user) {
- groupBackupKick(client, Group, user, true)
- filterWar.del(user)
- }
- }()
- if filterWar.cek(Invited) {
- groupBackupInv(client, Group, Optime, Invited)
- filterWar.del(Invited)
- }
- }
- }
- } else {
- if !MemUserN(Group, Invited) {
- if Checkkickuser(Group, user, Invited) {
- back(Group, Invited)
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- if MemUser(Group, user) {
- Banned.AddBan(user)
- }
- }
- }
- } else {
- if Room.ProKick {
- if MemUser(Group, user) {
- if Room.Backup {
- back(Group, Invited)
- }
- if _, ok := Nkick.Get(user); !ok {
- Nkick.Set(user, 1)
- kickPelaku(client, Group, user)
- Banned.AddBan(user)
- }
- }
- }
- }
- }
- } else {
- if MemUser(Group, Invited) {
- if MemUser(Group, user) {
- back(Group, Invited)
- Banned.AddBan(user)
- _, memlist := client.GetGroupMember(Group)
- oke := []string{}
- for mid, _ := range memlist {
- if InArray2(Squadlist, mid) {
- oke = append(oke, mid)
- }
- }
- if len(oke) == 0 {
- if !InArrayInt64(cekGo, Optime) {
- cekGo = append(cekGo, Optime)
- cls := []*oop.Account{}
- Bot2 := Room.Bot
- bots := Room.HaveClient
- for n, cl := range Room.GoClient {
- if n < 2 {
- go cl.AcceptGroupInvitationNormal(Group)
- cls = append(cls, cl)
- }
- }
- cc := len(cls)
- if cc != 0 {
- Purgesip(Group, cls[0])
- if Autojoin == "qr" {
- qrGo(cls[0], bots, Group)
- } else if Autojoin == "invite" {
- cls[0].InviteIntoChatPollVer(Group, Bot2)
- }
- for _, cl := range cls {
- Room.ConvertGo(cl)
- }
- }
- }
- }
- }
- }
- }
- if _, ok := filtermsg.Get(Optime); !ok {
- filtermsg.Set(Optime, client)
- LogOp(op, client)
- LogGet(op)
- }
- } else if op.Type == 130 {
- runtime.GOMAXPROCS(cpu)
- Group, user := op.Param1, op.Param2
- Room := oop.GetRoom(Group)
- if oop.IoGOBot(Group, client) {
- if Room.ProJoin {
- if MemUser(Group, user) {
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- Banned.AddBan(user)
- }
- }
- } else {
- if MemBan(Group, user) {
- if MemUser(Group, user) {
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- Banned.AddBan(user)
- }
- }
- } else {
- if InArray2(Room.ListInvited, user) {
- if MemUser(Group, user) {
- if cekjoin(user) {
- kickPelaku(client, Group, user)
- deljoin(user)
- Room.ListInvited = Remove(Room.ListInvited, user)
- }
- } else {
- Room.ListInvited = Remove(Room.ListInvited, user)
- }
- } else {
- if Room.Welcome {
- if _, ok := cewel.Get(user); !ok {
- cewel.Set(user, 1)
- if cekjoin(user) {
- if !InArray2(Squadlist, user) {
- Room.WelsomeSet(client, Group, user)
- }
- }
- }
- }
- }
- }
- }
- }
- Optime := op.CreatedTime
- if _, ok := filtermsg.Get(Optime); !ok {
- filtermsg.Set(Optime, client)
- LogOp(op, client)
- LogGet(op)
- }
- } else if op.Type == 122 {
- runtime.GOMAXPROCS(cpu)
- Group, user, invited := op.Param1, op.Param2, op.Param3
- Optime := op.CreatedTime
- Room := oop.GetRoom(Group)
- if client.Limited == false && oop.IoGOBot(Group, client) {
- if MemUser(Group, user) {
- if Room.ProQr || AutoproN == true {
- if invited == "4" {
- if cekOp2(Optime) {
- go func() {
- cans := oop.Actor(Group)
- for _, cl := range cans {
- err := cl.UpdateChatQrV2(Group, true)
- if err == nil {
- break
- }
- }
- }()
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- Banned.AddBan(user)
- }
- }
- }
- } else if Room.ProName || AutoproN == true {
- if invited == "1" {
- if cekOp2(Optime) {
- go func() {
- cans := oop.Actor(Group)
- for _, cl := range cans {
- err := cl.UpdateChatName(Group, Room.Name)
- if err == nil {
- break
- }
- }
- }()
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- }
- }
- }
- } else {
- if MemBan(Group, user) {
- if invited == "4" {
- if cekOp2(Optime) {
- go func() {
- cans := oop.Actor(Group)
- for _, cl := range cans {
- err := cl.UpdateChatQrV2(Group, true)
- if err == nil {
- break
- }
- }
- }()
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- Banned.AddBan(user)
- }
- }
- } else if invited == "1" {
- if cekOp2(Optime) {
- go func() {
- cans := oop.Actor(Group)
- for _, cl := range cans {
- err := cl.UpdateChatName(Group, Room.Name)
- if err == nil {
- break
- }
- }
- }()
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- }
- }
- }
- }
- }
- }
- }
- if _, ok := filtermsg.Get(Optime); !ok {
- filtermsg.Set(Optime, client)
- LogOp(op, client)
- LogGet(op)
- }
- } else if op.Type == 126 {
- runtime.GOMAXPROCS(cpu)
- Optime := op.CreatedTime
- Group, user, Invited := op.Param1, op.Param2, op.Param3
- Room := oop.GetRoom(Group)
- if client.MID == Invited {
- oop.Gones(Group, client)
- if MemUser(Group, user) {
- Banned.AddBan(user)
- }
- } else if !InArray2(Room.GoMid, client.MID) {
- if InArray2(client.Squads, Invited) {
- if MemUser(Group, user) {
- if oop.IoGOBot(Group, client) {
- Banned.AddBan(user)
- go func() {
- if filterWar.cek(user) {
- groupBackupKick(client, Group, user, true)
- filterWar.del(user)
- }
- }()
- if filterWar.cek(Invited) {
- groupBackupInv(client, Group, Optime, Invited)
- filterWar.del(Invited)
- }
- }
- }
- } else {
- if !MemUserN(Group, Invited) {
- if Checkkickuser(Group, user, Invited) {
- back(Group, Invited)
- if filterWar.ceki(user) {
- kickPelaku(client, Group, user)
- filterWar.deli(user)
- if MemUser(Group, user) {
- Banned.AddBan(user)
- }
- }
- }
- } else {
- if Room.ProCancel {
- if MemUser(Group, user) {
- if Room.Backup {
- back(Group, Invited)
- }
- if _, ok := Nkick.Get(user); !ok {
- Nkick.Set(user, 1)
- kickPelaku(client, Group, user)
- Banned.AddBan(user)
- }
- }
- }
- }
- }
- } else {
- if MemUser(Group, Invited) {
- if MemUser(Group, user) {
- back(Group, Invited)
- Banned.AddBan(user)
- _, memlist := client.GetGroupMember(Group)
- oke := []string{}
- for mid, _ := range memlist {
- if InArray2(Squadlist, mid) {
- oke = append(oke, mid)
- }
- }
- if len(oke) == 0 {
- if !InArrayInt64(cekGo, Optime) {
- cekGo = append(cekGo, Optime)
- cls := []*oop.Account{}
- Bot := Room.Bot
- bots := Room.HaveClient
- for n, cl := range Room.GoClient {
- if n < 2 {
- go cl.AcceptGroupInvitationNormal(Group)
- cls = append(cls, cl)
- }
- }
- cc := len(cls)
- if cc != 0 {
- Purgesip(Group, cls[0])
- if Autojoin == "qr" {
- qrGo(cls[0], bots, Group)
- } else if Autojoin == "invite" {
- cls[0].InviteIntoChatPollVer(Group, Bot)
- }
- for _, cl := range cls {
- Room.ConvertGo(cl)
- }
- }
- }
- }
- }
- }
- }
- if _, ok := filtermsg.Get(Optime); !ok {
- filtermsg.Set(Optime, client)
- LogOp(op, client)
- LogGet(op)
- }
- } else if op.Type == 5 {
- Group := op.Param1
- if LogMode && !InArray2(client.Squads, Group) {
- logAccess(client, client.Namebot, Group, "addfrind", []string{}, 2)
- }
- } else if op.Type == 55 {
- Optime := op.CreatedTime
- Group, user := op.Param1, op.Param2
- if client.Limited == false && oop.IoGOBot(Group, client) {
- if cekOp(Optime) {
- if MemBan(Group, user) {
- kickPelaku(client, Group, user)
- } else {
- Room := oop.GetRoom(Group)
- if Room.Lurk && !InArray2(checkHaid, user) {
- Room.CheckLurk(client, Group, user)
- }
- }
- }
- }
- if _, ok := filtermsg.Get(Optime); !ok {
- filtermsg.Set(Optime, client)
- LogOp(op, client)
- LogGet(op)
- }
- } else if op.Type == 26 {
- msg := op.Message
- Optime := op.CreatedTime
- if msg.ContentType != 18 {
- if _, ok := Command.Get(Optime); !ok {
- Command.Set(Optime, client)
- if _, ok := filterop.Get(Optime); !ok {
- filterop.Set(Optime, 1)
- Bot(op, client, ch)
- }
- }
- }
- if _, ok := filtermsg.Get(Optime); !ok {
- filtermsg.Set(Optime, client)
- LogOp(op, client)
- LogGet(op)
- }
- } else if op.Type == 128 {
- Optime := op.CreatedTime
- Group, user := op.Param1, op.Param2
- if !InArray2(Squadlist, user) {
- Room := oop.GetRoom(Group)
- if Room.Backleave {
- jangan := true
- tm, ok := botleave.Get(user)
- if ok {
- if time.Now().Sub(tm.(time.Time)) < 5*time.Second {
- jangan = false
- }
- }
- if jangan {
- if filterWar.ceki(user) {
- if !MemBan(Group, user) && !InArray2(Squadlist, user) && !UserBot.GetBot(user) && !InArray2(Room.GoMid, user) {
- hstg(Group, user)
- Room.Leave = time.Now()
- }
- }
- }
- } else {
- if Room.Leavebool {
- if _, ok := cleave.Get(user); !ok {
- cleave.Set(user, 1)
- if !MemBan(Group, user) && !InArray2(Squadlist, user) && !UserBot.GetBot(user) && !InArray2(Room.GoMid, user) {
- Room.LeaveSet(client, Group, user)
- }
- }
- }
- }
- }
- if _, ok := filtermsg.Get(Optime); !ok {
- filtermsg.Set(Optime, client)
- LogOp(op, client)
- LogGet(op)
- }
- } else if op.Type == 30 {
- Group := op.Param1
- Room := oop.GetRoom(Group)
- if Room.Announce && oop.IoGOBot(Group, client) {
- Optime := op.CreatedTime
- if cekOp(Optime) {
- Room.CheckAnnounce(client, Group)
- }
- }
- } else if op.Type == 123 {
- client.CInvite()
- } else if op.Type == 132 {
- client.CountKick()
- } else if op.Type == 125 {
- client.CCancel()
- }
- }
- }(multiFunc)
- for _, ops := range multiFunc {
- if ops.Type == 0 {
- client.CorrectRevision(ops, false, true, true)
- } else {
- client.CorrectRevision(ops, true, false, false)
- }
- }
- }
- }
|