projects.rb 9.8 KB
Newer Older
N
Nihad Abbasov 已提交
1 2 3 4 5 6 7 8 9 10 11
module Gitlab
  # Projects API
  class Projects < Grape::API
    before { authenticate! }

    resource :projects do
      # Get a projects list for authenticated user
      #
      # Example Request:
      #   GET /projects
      get do
N
Nihad Abbasov 已提交
12
        @projects = paginate current_user.projects
13
        present @projects, with: Entities::Project
N
Nihad Abbasov 已提交
14 15 16 17 18
      end

      # Get a single project
      #
      # Parameters:
N
Nihad Abbasov 已提交
19
      #   id (required) - The ID or code name of a project
N
Nihad Abbasov 已提交
20 21 22
      # Example Request:
      #   GET /projects/:id
      get ":id" do
23
        present user_project, with: Entities::Project
N
Nihad Abbasov 已提交
24 25
      end

26 27 28 29
      # Create new project
      #
      # Parameters:
      #   name (required) - name for new project
A
Alex Denisov 已提交
30 31
      #   code (optional) - code for new project, uses project name if not set
      #   path (optional) - path for new project, uses project name if not set
32 33 34 35 36 37
      #   description (optional) - short project description
      #   default_branch (optional) - 'master' by default
      #   issues_enabled (optional) - enabled by default
      #   wall_enabled (optional) - enabled by default
      #   merge_requests_enabled (optional) - enabled by default
      #   wiki_enabled (optional) - enabled by default
38 39 40
      # Example Request
      #   POST /projects
      post do
A
Alex Denisov 已提交
41 42 43 44 45 46 47 48 49
        params[:code] ||= params[:name]
        params[:path] ||= params[:name]
        project_attrs = {}
        params.each_pair do |k ,v|
          if Project.attribute_names.include? k
            project_attrs[k] = v
          end
        end
        @project = Project.create_by_user(project_attrs, current_user)
50 51 52
        if @project.saved?
          present @project, with: Entities::Project
        else
53
          not_found!
54 55 56
        end
      end

M
miks 已提交
57 58 59 60 61 62 63 64 65 66 67
      # Get project users
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
      # Example Request:
      #   GET /projects/:id/users
      get ":id/users" do
        @users_projects = paginate user_project.users_projects
        present @users_projects, with: Entities::UsersProject
      end

68 69 70 71 72 73 74
      # Add users to project with specified access level
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
      #   user_ids (required) - The ID list of users to add
      #   project_access (required) - Project access level
      # Example Request:
M
miks 已提交
75 76
      #   POST /projects/:id/users
      post ":id/users" do
R
randx 已提交
77
        authorize! :admin_project, user_project
M
miks 已提交
78
        user_project.add_users_ids_to_team(params[:user_ids].values, params[:project_access])
M
miks 已提交
79
        nil
80 81
      end

M
miks 已提交
82 83 84 85 86 87 88 89 90
      # Update users to specified access level
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
      #   user_ids (required) - The ID list of users to add
      #   project_access (required) - New project access level to
      # Example Request:
      #   PUT /projects/:id/add_users
      put ":id/users" do
R
randx 已提交
91
        authorize! :admin_project, user_project
M
miks 已提交
92
        user_project.update_users_ids_to_role(params[:user_ids].values, params[:project_access])
M
miks 已提交
93
        nil
M
miks 已提交
94 95 96 97 98 99 100 101 102 103
      end

      # Delete project users
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
      #   user_ids (required) - The ID list of users to delete
      # Example Request:
      #   DELETE /projects/:id/users
      delete ":id/users" do
R
randx 已提交
104
        authorize! :admin_project, user_project
M
miks 已提交
105
        user_project.delete_users_ids_from_team(params[:user_ids].values)
M
miks 已提交
106
        nil
M
miks 已提交
107 108
      end

M
miks 已提交
109 110 111 112 113 114 115
      # Get project hooks
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
      # Example Request:
      #   GET /projects/:id/hooks
      get ":id/hooks" do
M
miks 已提交
116
        authorize! :admin_project, user_project
M
miks 已提交
117 118 119 120 121 122 123 124 125 126 127 128
        @hooks = paginate user_project.hooks
        present @hooks, with: Entities::Hook
      end

      # Add hook to project
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
      #   url (required) - The hook URL
      # Example Request:
      #   POST /projects/:id/hooks
      post ":id/hooks" do
M
miks 已提交
129
        authorize! :admin_project, user_project
M
miks 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
        @hook = user_project.hooks.new({"url" => params[:url]})
        if @hook.save
          present @hook, with: Entities::Hook
        else
          error!({'message' => '404 Not found'}, 404)
        end
      end

      # Delete project hook
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
      #   hook_id (required) - The ID of hook to delete
      # Example Request:
      #   DELETE /projects/:id/hooks
      delete ":id/hooks" do
M
miks 已提交
146
        authorize! :admin_project, user_project
M
miks 已提交
147 148 149 150 151
        @hook = user_project.hooks.find(params[:hook_id])
        @hook.destroy
        nil
      end

N
Nihad Abbasov 已提交
152 153 154
      # Get a project repository branches
      #
      # Parameters:
N
Nihad Abbasov 已提交
155
      #   id (required) - The ID or code name of a project
N
Nihad Abbasov 已提交
156 157 158
      # Example Request:
      #   GET /projects/:id/repository/branches
      get ":id/repository/branches" do
159
        present user_project.repo.heads.sort_by(&:name), with: Entities::RepoObject
N
Nihad Abbasov 已提交
160 161
      end

162 163 164 165
      # Get a single branch
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
166
      #   branch (required) - The name of the branch
167
      # Example Request:
168 169 170
      #   GET /projects/:id/repository/branches/:branch
      get ":id/repository/branches/:branch" do
        @branch = user_project.repo.heads.find { |item| item.name == params[:branch] }
171
        present @branch, with: Entities::RepoObject
172 173
      end

N
Nihad Abbasov 已提交
174 175 176
      # Get a project repository tags
      #
      # Parameters:
N
Nihad Abbasov 已提交
177
      #   id (required) - The ID or code name of a project
N
Nihad Abbasov 已提交
178 179 180
      # Example Request:
      #   GET /projects/:id/repository/tags
      get ":id/repository/tags" do
181
        present user_project.repo.tags.sort_by(&:name).reverse, with: Entities::RepoObject
N
Nihad Abbasov 已提交
182
      end
N
Nihad Abbasov 已提交
183 184 185 186

      # Get a project snippet
      #
      # Parameters:
N
Nihad Abbasov 已提交
187
      #   id (required) - The ID or code name of a project
N
Nihad Abbasov 已提交
188 189 190 191
      #   snippet_id (required) - The ID of a project snippet
      # Example Request:
      #   GET /projects/:id/snippets/:snippet_id
      get ":id/snippets/:snippet_id" do
N
Nihad Abbasov 已提交
192
        @snippet = user_project.snippets.find(params[:snippet_id])
193
        present @snippet, with: Entities::ProjectSnippet
N
Nihad Abbasov 已提交
194 195 196 197 198
      end

      # Create a new project snippet
      #
      # Parameters:
N
Nihad Abbasov 已提交
199
      #   id (required) - The ID or code name of a project
N
Nihad Abbasov 已提交
200 201 202 203 204 205 206
      #   title (required) - The title of a snippet
      #   file_name (required) - The name of a snippet file
      #   lifetime (optional) - The expiration date of a snippet
      #   code (required) - The content of a snippet
      # Example Request:
      #   POST /projects/:id/snippets
      post ":id/snippets" do
N
Nihad Abbasov 已提交
207
        @snippet = user_project.snippets.new(
208 209 210 211
          title: params[:title],
          file_name: params[:file_name],
          expires_at: params[:lifetime],
          content: params[:code]
N
Nihad Abbasov 已提交
212 213 214 215
        )
        @snippet.author = current_user

        if @snippet.save
216
          present @snippet, with: Entities::ProjectSnippet
N
Nihad Abbasov 已提交
217
        else
218
          not_found!
N
Nihad Abbasov 已提交
219 220 221
        end
      end

222 223 224
      # Update an existing project snippet
      #
      # Parameters:
N
Nihad Abbasov 已提交
225
      #   id (required) - The ID or code name of a project
226 227 228 229 230 231 232 233
      #   snippet_id (required) - The ID of a project snippet
      #   title (optional) - The title of a snippet
      #   file_name (optional) - The name of a snippet file
      #   lifetime (optional) - The expiration date of a snippet
      #   code (optional) - The content of a snippet
      # Example Request:
      #   PUT /projects/:id/snippets/:snippet_id
      put ":id/snippets/:snippet_id" do
N
Nihad Abbasov 已提交
234
        @snippet = user_project.snippets.find(params[:snippet_id])
R
randx 已提交
235 236
        authorize! :modify_snippet, @snippet

237
        parameters = {
238 239 240 241
          title: (params[:title] || @snippet.title),
          file_name: (params[:file_name] || @snippet.file_name),
          expires_at: (params[:lifetime] || @snippet.expires_at),
          content: (params[:code] || @snippet.content)
242 243 244
        }

        if @snippet.update_attributes(parameters)
245
          present @snippet, with: Entities::ProjectSnippet
246
        else
247
          not_found!
248 249 250
        end
      end

N
Nihad Abbasov 已提交
251 252 253
      # Delete a project snippet
      #
      # Parameters:
N
Nihad Abbasov 已提交
254
      #   id (required) - The ID or code name of a project
N
Nihad Abbasov 已提交
255 256 257 258
      #   snippet_id (required) - The ID of a project snippet
      # Example Request:
      #   DELETE /projects/:id/snippets/:snippet_id
      delete ":id/snippets/:snippet_id" do
N
Nihad Abbasov 已提交
259
        @snippet = user_project.snippets.find(params[:snippet_id])
R
randx 已提交
260 261
        authorize! :modify_snippet, @snippet

N
Nihad Abbasov 已提交
262 263
        @snippet.destroy
      end
264 265 266 267

      # Get a raw project snippet
      #
      # Parameters:
N
Nihad Abbasov 已提交
268
      #   id (required) - The ID or code name of a project
269 270 271 272
      #   snippet_id (required) - The ID of a project snippet
      # Example Request:
      #   GET /projects/:id/snippets/:snippet_id/raw
      get ":id/snippets/:snippet_id/raw" do
N
Nihad Abbasov 已提交
273
        @snippet = user_project.snippets.find(params[:snippet_id])
274
        content_type 'text/plain'
275 276
        present @snippet.content
      end
277 278 279 280 281

      # Get a raw file contents
      #
      # Parameters:
      #   id (required) - The ID or code name of a project
282
      #   sha (required) - The commit or branch name
283 284 285 286 287 288 289
      #   filepath (required) - The path to the file to display
      # Example Request:
      #   GET /projects/:id/repository/commits/:sha/blob
      get ":id/repository/commits/:sha/blob" do
        ref = params[:sha]

        commit = user_project.commit ref
290
        not_found! "Commit" unless commit
291

292
        tree = Tree.new commit.tree, user_project, ref, params[:filepath]
293
        not_found! "File" unless tree.try(:tree)
294

295 296 297 298 299 300 301 302 303 304
        if tree.text?
          encoding = Gitlab::Encode.detect_encoding(tree.data)
          content_type encoding ? "text/plain; charset=#{encoding}" : "text/plain"
        else
          content_type tree.mime_type
        end

        present tree.data
      end

N
Nihad Abbasov 已提交
305 306 307
    end
  end
end