douchuituo3032 2018-07-06 08:19
浏览 344
已采纳

在golang中正确映射YAML配置文件

I write an API in go which can create organisation which have default policies rules.

I want to use an external config YAML file to include some policies in my API (I actually put the policies inside my code in the function which creates my entity organisation) :

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"}]

I extract it using go-yaml lib and the expected output should be :

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

But when I extract it in a struct like :

// 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:
%v

", config)
    return
}

I get this :

[{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]]}]

Maybe I don't get well how to use or properly write YAML, so guys could you help me understanding how to map it to obtain the output expected.

  • 写回答

1条回答 默认 最新

  • duangan6133 2018-07-06 09:31
    关注

    Finally find it, I have to change my Yaml a little to have a proper array, the case seems to be very important too :

    - 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"}
    

    and my struct is a bit differents it contains a struct than include my two strings :

    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"`
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题