18 lines
486 B
Ruby
18 lines
486 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Validations
|
|
module Validators
|
|
class GitSha < Grape::Validations::Base
|
|
def validate_param!(attr_name, params)
|
|
sha = params[attr_name]
|
|
|
|
return if Commit::EXACT_COMMIT_SHA_PATTERN.match?(sha)
|
|
|
|
raise Grape::Exceptions::Validation, params: [@scope.full_name(attr_name)],
|
|
message: "should be a valid sha"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|