69 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module Gitlab
 | |
|   class GitAccessWiki < GitAccess
 | |
|     extend ::Gitlab::Utils::Override
 | |
| 
 | |
|     ERROR_MESSAGES = {
 | |
|       download: 'You are not allowed to download files from this wiki.',
 | |
|       not_found: 'The wiki you were looking for could not be found.',
 | |
|       no_repo: 'A repository for this wiki does not exist yet.',
 | |
|       read_only: "You can't push code to a read-only GitLab instance.",
 | |
|       write_to_wiki: "You are not allowed to write to this project's wiki."
 | |
|     }.freeze
 | |
| 
 | |
|     override :project
 | |
|     def project
 | |
|       container.project if container.is_a?(ProjectWiki)
 | |
|     end
 | |
| 
 | |
|     override :download_ability
 | |
|     def download_ability
 | |
|       :download_wiki_code
 | |
|     end
 | |
| 
 | |
|     override :push_ability
 | |
|     def push_ability
 | |
|       :create_wiki
 | |
|     end
 | |
| 
 | |
|     private
 | |
| 
 | |
|     override :build_can_download?
 | |
|     def build_can_download?
 | |
|       super && user_access.can_do_action?(download_ability)
 | |
|     end
 | |
| 
 | |
|     override :deploy_token_can_download?
 | |
|     def deploy_token_can_download?
 | |
|       super && deploy_token.can?(download_ability, container)
 | |
|     end
 | |
| 
 | |
|     override :repository_access_level
 | |
|     def repository_access_level
 | |
|       project&.wiki_access_level
 | |
|     end
 | |
| 
 | |
|     override :check_change_access!
 | |
|     def check_change_access!
 | |
|       raise ForbiddenError, write_to_wiki_message unless user_can_push?
 | |
| 
 | |
|       true
 | |
|     end
 | |
| 
 | |
|     def push_to_read_only_message
 | |
|       error_message(:read_only)
 | |
|     end
 | |
| 
 | |
|     def write_to_wiki_message
 | |
|       error_message(:write_to_wiki)
 | |
|     end
 | |
| 
 | |
|     def not_found_message
 | |
|       error_message(:not_found)
 | |
|     end
 | |
|   end
 | |
| end
 | |
| 
 | |
| Gitlab::GitAccessWiki.prepend_mod_with('Gitlab::GitAccessWiki')
 |