48 lines
866 B
Go
48 lines
866 B
Go
![]() |
// For more tutorials: https://blog.learngoprogramming.com
|
||
|
//
|
||
|
// Copyright © 2018 Inanc Gumus
|
||
|
// Learn Go Programming Course
|
||
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||
|
//
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"bufio"
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
type user struct {
|
||
|
Name string `json:"username"`
|
||
|
Permissions map[string]bool `json:"perms"`
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
var input []byte
|
||
|
for in := bufio.NewScanner(os.Stdin); in.Scan(); {
|
||
|
input = append(input, in.Bytes()...)
|
||
|
}
|
||
|
|
||
|
var users []user
|
||
|
if err := json.Unmarshal(input, &users); err != nil {
|
||
|
fmt.Println(err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
for _, user := range users {
|
||
|
fmt.Print("+ ", user.Name)
|
||
|
|
||
|
switch p := user.Permissions; {
|
||
|
case p == nil:
|
||
|
fmt.Print(" has no power.")
|
||
|
case p["admin"]:
|
||
|
fmt.Print(" is an admin.")
|
||
|
case p["write"]:
|
||
|
fmt.Print(" can write.")
|
||
|
}
|
||
|
fmt.Println()
|
||
|
}
|
||
|
}
|