Sha256: 8ed6163f724063e8b07e9e66823988a638ad2f7da5f135615d132e2b242ab3e3

Contents?: true

Size: 1.45 KB

Versions: 290

Compression:

Stored size: 1.45 KB

Contents

require 'travis/client'

module Travis
  module Client
    class User < Entity
      # @!parse attr_reader :login, :name, :email, :gravatar_id, :locale, :is_syncing, :synced_at, :correct_scopes
      attributes :login, :name, :email, :gravatar_id, :locale, :is_syncing, :synced_at, :correct_scopes, :channels
      inspect_info :login

      one  :user
      many :users

      def synced_at=(time)
        set_attribute(:synced_at, time(time))
      end

      def sync
        session.post_raw('/users/sync')
        reload
      end

      def channels
        load_attribute(:is_syncing) # dummy to trigger load, as channels might not be included
        attributes['channels'] ||= ['common']
      end

      def permissions
        attributes['permissions'] ||= begin
          repos = session.get('/users/permissions')
          repos.each_value { |r| r.compact! }
          repos
        end
      end

      def repositories
        permissions['permissions']
      end

      def push_access
        permissions['push']
      end

      def pull_access
        permissions['pull']
      end

      def admin_access
        permissions['admin']
      end

      def push_access?(repo)
        push_access.include? repo
      end

      def pull_access?(repo)
        pull_access.include? repo
      end

      def admin_access?(repo)
        admin_access.include? repo
      end

      alias syncing? is_syncing
      alias correct_scopes? correct_scopes
    end
  end
end

Version data entries

290 entries across 290 versions & 3 rubygems

Version Path
travis-1.6.15.travis.561.6 lib/travis/client/user.rb
travis-1.6.15.travis.560.6 lib/travis/client/user.rb
travis-1.6.15.travis.559.6 lib/travis/client/user.rb
travis-1.6.15.travis.558.6 lib/travis/client/user.rb
travis-1.6.15.travis.557.6 lib/travis/client/user.rb
travis-1.6.15.travis.556.6 lib/travis/client/user.rb
travis-1.6.15.travis.555.6 lib/travis/client/user.rb
travis-1.6.15.travis.554.6 lib/travis/client/user.rb
travis-1.6.15.travis.552.6 lib/travis/client/user.rb
travis-1.6.15.travis.551.6 lib/travis/client/user.rb
travis-1.6.15.travis.550.6 lib/travis/client/user.rb
travis-1.6.15.travis.547.6 lib/travis/client/user.rb
travis-1.6.15.travis.544.6 lib/travis/client/user.rb
travis-1.6.14.travis.543.6 lib/travis/client/user.rb
travis-1.6.14 lib/travis/client/user.rb
travis-1.6.14.travis.539.6 lib/travis/client/user.rb
travis-1.6.13.travis.538.6 lib/travis/client/user.rb
travis-1.6.13 lib/travis/client/user.rb
travis-1.6.13.travis.536.6 lib/travis/client/user.rb
travis-1.6.12 lib/travis/client/user.rb