api.rb 3.6 KB
Newer Older
1
module API
N
Nihad Abbasov 已提交
2
  class API < Grape::API
V
Valery Sizov 已提交
3
    include APIGuard
O
Oswaldo Ferreira 已提交
4 5 6 7

    version %w(v3 v4), using: :path

    version 'v3', using: :path do
R
Robert Schilling 已提交
8
      mount ::API::V3::AwardEmoji
R
Robert Schilling 已提交
9 10
      mount ::API::V3::Boards
      mount ::API::V3::Branches
R
Robert Schilling 已提交
11
      mount ::API::V3::BroadcastMessages
12
      mount ::API::V3::Builds
13
      mount ::API::V3::Commits
14
      mount ::API::V3::DeployKeys
R
Robert Schilling 已提交
15
      mount ::API::V3::Environments
16
      mount ::API::V3::Files
R
Robert Schilling 已提交
17
      mount ::API::V3::Groups
18
      mount ::API::V3::Issues
R
Robert Schilling 已提交
19
      mount ::API::V3::Labels
20
      mount ::API::V3::Members
R
Robert Schilling 已提交
21
      mount ::API::V3::MergeRequestDiffs
22
      mount ::API::V3::MergeRequests
23
      mount ::API::V3::Notes
24
      mount ::API::V3::Pipelines
R
Robert Schilling 已提交
25
      mount ::API::V3::ProjectHooks
J
Jarka Kadlecova 已提交
26
      mount ::API::V3::Milestones
O
Oswaldo Ferreira 已提交
27
      mount ::API::V3::Projects
28
      mount ::API::V3::ProjectSnippets
R
Robert Schilling 已提交
29
      mount ::API::V3::Repositories
R
Robert Schilling 已提交
30 31
      mount ::API::V3::Runners
      mount ::API::V3::Services
32
      mount ::API::V3::Settings
33
      mount ::API::V3::Snippets
34
      mount ::API::V3::Subscriptions
R
Robert Schilling 已提交
35 36
      mount ::API::V3::SystemHooks
      mount ::API::V3::Tags
37
      mount ::API::V3::Templates
R
Robert Schilling 已提交
38 39
      mount ::API::V3::Todos
      mount ::API::V3::Triggers
R
Robert Schilling 已提交
40
      mount ::API::V3::Users
R
Robert Schilling 已提交
41
      mount ::API::V3::Variables
O
Oswaldo Ferreira 已提交
42
    end
N
Nihad Abbasov 已提交
43

44 45
    before { allow_access_with_scope :api }

46 47 48 49
    rescue_from Gitlab::Access::AccessDeniedError do
      rack_response({ 'message' => '403 Forbidden' }.to_json, 403)
    end

N
Nihad Abbasov 已提交
50
    rescue_from ActiveRecord::RecordNotFound do
51
      rack_response({ 'message' => '404 Not found' }.to_json, 404)
N
Nihad Abbasov 已提交
52 53
    end

C
Connor Shea 已提交
54
    # Retain 405 error rather than a 500 error for Grape 0.15.0+.
55 56 57 58 59
    # https://github.com/ruby-grape/grape/blob/a3a28f5b5dfbb2797442e006dbffd750b27f2a76/UPGRADING.md#changes-to-method-not-allowed-routes
    rescue_from Grape::Exceptions::MethodNotAllowed do |e|
      error! e.message, e.status, e.headers
    end

C
Connor Shea 已提交
60 61
    rescue_from Grape::Exceptions::Base do |e|
      error! e.message, e.status, e.headers
62 63
    end

64
    rescue_from Gitlab::Auth::TooManyIps do |e|
65
      rack_response({ 'message' => '403 Forbidden' }.to_json, 403)
66 67
    end

F
Felix Gilcher 已提交
68
    rescue_from :all do |exception|
S
Stan Hu 已提交
69
      handle_api_exception(exception)
70 71
    end

N
Nihad Abbasov 已提交
72
    format :json
73 74
    content_type :txt, "text/plain"

75
    # Ensure the namespace is right, otherwise we might load Grape::API::Helpers
S
Stan Hu 已提交
76
    helpers ::SentryHelper
77 78
    helpers ::API::Helpers

79
    # Keep in alphabetical order
80
    mount ::API::AccessRequests
81
    mount ::API::AwardEmoji
R
Robert Schilling 已提交
82
    mount ::API::Boards
83
    mount ::API::Branches
84
    mount ::API::BroadcastMessages
85
    mount ::API::Commits
R
Robert Schilling 已提交
86
    mount ::API::CommitStatuses
87
    mount ::API::DeployKeys
Z
Z.J. van de Weg 已提交
88
    mount ::API::Deployments
89
    mount ::API::Environments
90 91 92
    mount ::API::Files
    mount ::API::Groups
    mount ::API::Internal
93
    mount ::API::Issues
94
    mount ::API::Jobs
95 96
    mount ::API::Keys
    mount ::API::Labels
97
    mount ::API::Lint
98
    mount ::API::Members
99
    mount ::API::MergeRequestDiffs
R
Robert Schilling 已提交
100
    mount ::API::MergeRequests
101 102
    mount ::API::Milestones
    mount ::API::Namespaces
103
    mount ::API::Notes
104
    mount ::API::NotificationSettings
Z
Z.J. van de Weg 已提交
105
    mount ::API::Pipelines
106
    mount ::API::ProjectHooks
107
    mount ::API::Projects
R
Robert Schilling 已提交
108
    mount ::API::ProjectSnippets
109
    mount ::API::Repositories
T
Tomasz Maczukin 已提交
110
    mount ::API::Runner
111
    mount ::API::Runners
112
    mount ::API::Services
113
    mount ::API::Session
114
    mount ::API::Settings
115
    mount ::API::SidekiqMetrics
116
    mount ::API::Snippets
117 118
    mount ::API::Subscriptions
    mount ::API::SystemHooks
119
    mount ::API::Tags
Z
ZJ van de Weg 已提交
120
    mount ::API::Templates
D
Douglas Barbosa Alexandre 已提交
121
    mount ::API::Todos
122
    mount ::API::Triggers
123
    mount ::API::Users
124
    mount ::API::Variables
R
Robert Schilling 已提交
125
    mount ::API::Version
126 127

    route :any, '*path' do
128
      error!('404 Not Found', 404)
129
    end
N
Nihad Abbasov 已提交
130
  end
131
end