Using the ruby-trello gem, how can I determine whe

2019-09-20 10:31发布

I'm using the ruby-trello gem to access the Trello API.

I tried this:

> board = Trello::Member.find('me').boards.first
> board.prefs['permissionLevel']
=> "org"
> board.organization.prefs
Traceback (most recent call last):
        1: from (irb):20
NoMethodError (undefined method `prefs' for #<Trello::Organization:0x0000562900d7bb88>)

Am I going about this the right way?

标签: ruby trello
1条回答
趁早两清
2楼-- · 2019-09-20 11:03

Building off this answer, here's a workaround:

def org_public?(org)
  # If org comes from a board, it may be nil. We'll skip the philosophical conundrums
  # and assume an inaccessible or non-existent board is not public.
  return false if org.nil?

  path = "/organizations/#{org.id}/prefs"
  response = org.client.get(path)
  JSON.parse(response.body)['permissionLevel']
end

def board_public?(board)
  # Sometimes board.organization will return a 401 error when there is a board. 
  # Maybe it's been deleted?
  org = board.organization rescue nil

  # If board is public, sure
  return true if board.prefs['permissionLevel'] == 'public' 

  # If board permission tied to org
  return true if board.prefs['permissionLevel'] == 'org' && org_public?(org)

  # Any other cases I'm missing?
  false 
end

> board = Trello::Member.find('me').boards.first
> board_public?(board)
=> true
> board = Trello::Member.find('me').boards[1]
> board_public?(board)
=> false
查看更多
登录 后发表回答