34 lines
620 B
Ruby
34 lines
620 B
Ruby
|
module Todos
|
||
|
module Destroy
|
||
|
class BaseService
|
||
|
def execute
|
||
|
return unless todos_to_remove?
|
||
|
|
||
|
without_authorized(todos).delete_all
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def without_authorized(items)
|
||
|
items.where('user_id NOT IN (?)', authorized_users)
|
||
|
end
|
||
|
|
||
|
def authorized_users
|
||
|
ProjectAuthorization.select(:user_id).where(project_id: project_ids)
|
||
|
end
|
||
|
|
||
|
def todos
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
|
||
|
def project_ids
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
|
||
|
def todos_to_remove?
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|