debian-mirror-gitlab/app/finders/personal_access_tokens_finder.rb

61 lines
1.1 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
class PersonalAccessTokensFinder
attr_accessor :params
2018-12-13 13:39:08 +05:30
delegate :build, :find, :find_by_id, :find_by_token, to: :execute
2017-08-17 22:00:37 +05:30
def initialize(params = {})
@params = params
end
def execute
tokens = PersonalAccessToken.all
tokens = by_user(tokens)
tokens = by_impersonation(tokens)
2020-01-01 13:55:28 +05:30
tokens = by_state(tokens)
sort(tokens)
2017-08-17 22:00:37 +05:30
end
private
def by_user(tokens)
return tokens unless @params[:user]
2018-03-17 18:26:18 +05:30
2020-01-01 13:55:28 +05:30
tokens.for_user(@params[:user])
end
def sort(tokens)
available_sort_orders = PersonalAccessToken.simple_sorts.keys
return tokens unless available_sort_orders.include?(params[:sort])
tokens.order_by(params[:sort])
2017-08-17 22:00:37 +05:30
end
def by_impersonation(tokens)
case @params[:impersonation]
when true
tokens.with_impersonation
when false
tokens.without_impersonation
else
tokens
end
end
def by_state(tokens)
case @params[:state]
when 'active'
tokens.active
when 'inactive'
tokens.inactive
2020-07-28 23:09:34 +05:30
when 'active_or_expired'
tokens.not_revoked.expired.or(tokens.active)
2017-08-17 22:00:37 +05:30
else
tokens
end
end
end