在golang

时间:2018-07-06 08:19:51

标签: go yaml

我在go中编写了一个API,可以创建具有默认策略规则的组织。

我想使用一个外部配置YAML文件在我的API中包括一些策略(实际上,我将这些策略放在了创建实体组织的函数中的代码中):

policy.yml

- role: "admin"
  organisationid: organisation.ID
  policies:
    [{Object: "/*", Action: "*"}]

- role: "user"
  organisationid: organisation.ID
  policies:
    [{Object: "/me", Action: "GET"},
    {Object: "/organisations", Action: "GET"},
    {Object: "/acl/roles", Action: "GET"}]

我使用go-yaml lib提取了它,预期的输出应该是:

[{admin organisation.ID [{/* *}]} {user organisation.ID [{/me GET} {/organisations GET} {/acl/roles GET}]}]

但是当我将其提取为类似的结构时:

// OrganisationRole ...
type OrganisationRoleNoPolicy struct {
    Role           string              `json:"role"`
    OrganisationID string              `json:"organisation"`
    Policies       []map[string]string `json:"policies"`
}

func extractYaml() (config []OrganisationRoleNoPolicy) {

    filename := "policy.yml"
    source, err := ioutil.ReadFile(filename)
    if err != nil {
        panic(err)
    }
    err = yaml.Unmarshal(source, &config)
    if err != nil {
        log.Fatalf("error: %v", err)
    }
    fmt.Printf("--- config:\n%v\n\n", config)
    return
}

我明白了:

[{admin organisation.ID [map[Object:/* Action:*]]} {user organisation.ID [map[Object:/me Action:GET] map[Object:/organisations Action:GET] map[Object:/acl/roles Action:GET]]}]

也许我不太了解如何使用或正确编写YAML,所以伙计们可以帮我了解如何映射它以获取预期的输出。

1 个答案:

答案 0 :(得分:1)

最后找到它,我必须稍微更改Yaml才能拥有适当的数组,这种情况似乎也很重要:

- role: "admin"
  organisationid: organisation.ID
  policies:
    - {object: "/*", action: "*"}

- role: "user"
  organisationid: organisation.ID
  policies:
    - {object: "/me", action: "GET"}
    - {object: "/organisations", action: "GET"}
    - {object: "/acl/roles", action: "GET"}

和我的结构有点不同,它包含的结构比包含我的两个字符串的

type policy struct {
    Object string `json:"obj" binding:"required"`
    Action string `json:"act" binding:"required"`
}

// OrganisationRole ...
type OrganisationRole struct {
    Role           string   `json:"role"`
    OrganisationID string   `json:"organisation"`
    Policies       []policy `json:"policies"`
}