]> Sergey Matveev's repositories - mmc.git/blob - cmd/ch-leave/main.go
00e6311c50d38a78c5eba5eb8ec2fac24fdfad25
[mmc.git] / cmd / ch-leave / main.go
1 // mmc -- Mattermost client
2 // Copyright (C) 2023 Sergey Matveev <stargrave@stargrave.org>
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Affero General Public License as
6 // published by the Free Software Foundation, either version 3 of the
7 // License.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU Affero General Public License for more details.
13 //
14 // You should have received a copy of the GNU Affero General Public License
15 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 package main
18
19 import (
20         "flag"
21         "log"
22
23         "github.com/mattermost/mattermost-server/v6/model"
24         "go.stargrave.org/mmc"
25 )
26
27 func main() {
28         entrypoint := flag.String("entrypoint", "mm.rnd.stcnet.ru", "Entrypoint")
29         flag.Parse()
30         log.SetFlags(log.Lshortfile)
31
32         chId := flag.Arg(0)
33         login, password := mmc.FindInNetrc(*entrypoint)
34         if login == "" || password == "" {
35                 log.Fatalln("no credentials found for:", *entrypoint)
36         }
37         c := model.NewAPIv4Client("https://" + *entrypoint)
38         c.Login(login, password)
39         me, _, err := c.GetMe("")
40         if err != nil {
41                 log.Fatalln(err)
42         }
43         if _, err = c.RemoveUserFromChannel(chId, me.Id); err != nil {
44                 log.Println("RemoveUserFromChannel:", err)
45         }
46         c.Logout()
47 }