91 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
| module API
 | |
|   # Projects variables API
 | |
|   class Variables < Grape::API
 | |
|     before { authenticate! }
 | |
|     before { authorize! :admin_build, user_project }
 | |
| 
 | |
|     params do
 | |
|       requires :id, type: String, desc: 'The ID of a project'
 | |
|     end
 | |
| 
 | |
|     resource :projects do
 | |
|       desc 'Get project variables' do
 | |
|         success Entities::Variable
 | |
|       end
 | |
|       params do
 | |
|         optional :page, type: Integer, desc: 'The page number for pagination'
 | |
|         optional :per_page, type: Integer, desc: 'The value of items per page to show'
 | |
|       end
 | |
|       get ':id/variables' do
 | |
|         variables = user_project.variables
 | |
|         present paginate(variables), with: Entities::Variable
 | |
|       end
 | |
| 
 | |
|       desc 'Get a specific variable from a project' do
 | |
|         success Entities::Variable
 | |
|       end
 | |
|       params do
 | |
|         requires :key, type: String, desc: 'The key of the variable'
 | |
|       end
 | |
|       get ':id/variables/:key' do
 | |
|         key = params[:key]
 | |
|         variable = user_project.variables.find_by(key: key.to_s)
 | |
| 
 | |
|         return not_found!('Variable') unless variable
 | |
| 
 | |
|         present variable, with: Entities::Variable
 | |
|       end
 | |
| 
 | |
|       desc 'Create a new variable in a project' do
 | |
|         success Entities::Variable
 | |
|       end
 | |
|       params do
 | |
|         requires :key, type: String, desc: 'The key of the variable'
 | |
|         requires :value, type: String, desc: 'The value of the variable'
 | |
|       end
 | |
|       post ':id/variables' do
 | |
|         variable = user_project.variables.create(declared(params, include_parent_namespaces: false).to_h)
 | |
| 
 | |
|         if variable.valid?
 | |
|           present variable, with: Entities::Variable
 | |
|         else
 | |
|           render_validation_error!(variable)
 | |
|         end
 | |
|       end
 | |
| 
 | |
|       desc 'Update an existing variable from a project' do
 | |
|         success Entities::Variable
 | |
|       end
 | |
|       params do
 | |
|         optional :key, type: String, desc: 'The key of the variable'
 | |
|         optional :value, type: String, desc: 'The value of the variable'
 | |
|       end
 | |
|       put ':id/variables/:key' do
 | |
|         variable = user_project.variables.find_by(key: params[:key])
 | |
| 
 | |
|         return not_found!('Variable') unless variable
 | |
| 
 | |
|         if variable.update(value: params[:value])
 | |
|           present variable, with: Entities::Variable
 | |
|         else
 | |
|           render_validation_error!(variable)
 | |
|         end
 | |
|       end
 | |
| 
 | |
|       desc 'Delete an existing variable from a project' do
 | |
|         success Entities::Variable
 | |
|       end
 | |
|       params do
 | |
|         requires :key, type: String, desc: 'The key of the variable'
 | |
|       end
 | |
|       delete ':id/variables/:key' do
 | |
|         variable = user_project.variables.find_by(key: params[:key])
 | |
| 
 | |
|         return not_found!('Variable') unless variable
 | |
| 
 | |
|         present variable.destroy, with: Entities::Variable
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |