]> Sergey Matveev's repositories - mmc.git/blob - cmd/ch-leave/main.go
d9e3385413dd791e9752b1ee42894d657557a3c2
[mmc.git] / cmd / ch-leave / main.go
1 // mmc -- Mattermost client
2 // Copyright (C) 2023-2024 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         "net/url"
23
24         "github.com/mattermost/mattermost-server/v6/model"
25         "go.cypherpunks.ru/netrc"
26         "go.stargrave.org/mmc"
27 )
28
29 func main() {
30         entrypoint := flag.String("entrypoint", mmc.GetEntrypoint(), "Entrypoint")
31         flag.Parse()
32         log.SetFlags(log.Lshortfile)
33         chId := flag.Arg(0)
34         entrypointURL, err := url.Parse(*entrypoint)
35         if err != nil {
36                 log.Fatalln(err)
37         }
38         login, password := netrc.Find(entrypointURL.Hostname())
39         if login == "" || password == "" {
40                 log.Fatalln("no credentials found for:", entrypointURL.Hostname())
41         }
42         c := model.NewAPIv4Client(*entrypoint)
43         c.Login(login, password)
44         me, _, err := c.GetMe("")
45         if err != nil {
46                 log.Fatalln(err)
47         }
48         if _, err = c.RemoveUserFromChannel(chId, me.Id); err != nil {
49                 log.Println("RemoveUserFromChannel:", err)
50         }
51         c.Logout()
52 }