]> Sergey Matveev's repositories - mmc.git/blob - cmd/ch-leave/main.go
18c05b7374fae40a5a9c4860479df2851055cd96
[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.cypherpunks.ru/netrc"
25         "go.stargrave.org/mmc"
26 )
27
28 func main() {
29         entrypoint := flag.String("entrypoint", mmc.GetEntrypoint(), "Entrypoint")
30         flag.Parse()
31         log.SetFlags(log.Lshortfile)
32
33         chId := flag.Arg(0)
34         login, password := netrc.Find(*entrypoint)
35         if login == "" || password == "" {
36                 log.Fatalln("no credentials found for:", *entrypoint)
37         }
38         c := model.NewAPIv4Client("https://" + *entrypoint)
39         c.Login(login, password)
40         me, _, err := c.GetMe("")
41         if err != nil {
42                 log.Fatalln(err)
43         }
44         if _, err = c.RemoveUserFromChannel(chId, me.Id); err != nil {
45                 log.Println("RemoveUserFromChannel:", err)
46         }
47         c.Logout()
48 }