36 lines
		
	
	
		
			764 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			764 B
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module Gitlab
 | |
|   class GitAccessDesign < GitAccess
 | |
|     extend ::Gitlab::Utils::Override
 | |
| 
 | |
|     def check(_cmd, _changes)
 | |
|       check_protocol!
 | |
|       check_can_create_design!
 | |
| 
 | |
|       success_result
 | |
|     end
 | |
| 
 | |
|     override :push_ability
 | |
|     def push_ability
 | |
|       :create_design
 | |
|     end
 | |
| 
 | |
|     private
 | |
| 
 | |
|     def check_protocol!
 | |
|       if protocol != 'web'
 | |
|         raise ::Gitlab::GitAccess::ForbiddenError, "Designs are only accessible using the web interface"
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     def check_can_create_design!
 | |
|       unless user_can_push?
 | |
|         raise ::Gitlab::GitAccess::ForbiddenError, "You are not allowed to manage designs of this project"
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | |
| 
 | |
| Gitlab::GitAccessDesign.prepend_mod_with('Gitlab::GitAccessDesign')
 |