]> Cypherpunks.ru repositories - gocheese.git/blob - passwd.go
Descriptive passwords parsing
[gocheese.git] / passwd.go
1 /*
2 GoCheese -- Python private package repository and caching proxy
3 Copyright (C) 2019 Sergey Matveev <stargrave@stargrave.org>
4               2019 Elena Balakhonova <balakhonova_e@riseup.net>
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, version 3 of the License.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package main
20
21 import (
22         "io/ioutil"
23         "log"
24         "strings"
25 )
26
27 func refreshPasswd() {
28         passwd, err := ioutil.ReadFile(*passwdPath)
29         if err != nil {
30                 log.Fatal(err)
31         }
32         for i, credentials := range strings.Split(strings.TrimRight(string(passwd), "\n"), "\n") {
33                 splitted := strings.Split(credentials, ":")
34                 if len(splitted) != 2 {
35                         log.Fatalf("%s:%d: Wrong login:password format", *passwdPath, i)
36                 }
37                 login := splitted[0]
38                 if _, exists := passwords[login]; exists {
39                         log.Fatalf("%s:%d: %s: already exists", *passwdPath, i, login)
40                 }
41                 _, auther, err := strToAuther(splitted[1])
42                 if err != nil {
43                         log.Fatalf("%s:%d: %s: %s", *passwdPath, i, login, err)
44                 }
45                 passwords[login] = auther
46                 log.Println("Added password for " + login)
47         }
48 }