Retrospring/lib/errors.rb

100 lines
1.7 KiB
Ruby
Raw Normal View History

2021-08-14 09:04:58 -07:00
module Errors
class Base < StandardError
def status
500
end
def code
@code ||= self.class.name.sub('Errors::', '').underscore
end
def locale_tag
@locale_tag ||= "errors.#{code}"
end
end
class BadRequest < Base
def status
400
end
end
class InvalidBanDuration < BadRequest
2021-08-14 09:04:58 -07:00
end
class Forbidden < Base
def status
403
end
2021-08-14 09:04:58 -07:00
end
class SelfAction < Forbidden
end
class FollowingSelf < SelfAction
end
class NotFound < Base
def status
404
end
end
class UserNotFound < NotFound
end
2022-04-18 12:24:15 -07:00
# region User Blocking
class Blocked < Forbidden
end
class OtherBlockedSelf < Blocked
end
class BlockingSelf < SelfAction
end
class AskingOtherBlockedSelf < OtherBlockedSelf
end
class FollowingOtherBlockedSelf < OtherBlockedSelf
end
class SelfBlockedOther < Blocked
end
class AskingSelfBlockedOther < SelfBlockedOther
end
class FollowingSelfBlockedOther < SelfBlockedOther
end
class AnsweringOtherBlockedSelf < OtherBlockedSelf
end
class AnsweringSelfBlockedOther < SelfBlockedOther
end
class CommentingSelfBlockedOther < SelfBlockedOther
end
class CommentingOtherBlockedSelf < OtherBlockedSelf
end
class ReactingSelfBlockedOther < SelfBlockedOther
@locale_tag = "errors.self_blocked_other"
end
class ReactingOtherBlockedSelf < OtherBlockedSelf
@locale_tag = "errors.other_blocked_self"
end
2022-06-09 10:55:56 -07:00
class ListingSelfBlockedOther < SelfBlockedOther
@locale_tag = "errors.self_blocked_other"
2022-06-09 10:55:56 -07:00
end
class ListingOtherBlockedSelf < OtherBlockedSelf
@locale_tag = "errors.other_blocked_self"
2022-06-09 10:55:56 -07:00
end
2022-04-18 12:24:15 -07:00
# endregion
end