mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-10-28 23:18:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			350 lines
		
	
	
	
		
			12 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			350 lines
		
	
	
	
		
			12 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class WopiController < ActionController::Base
 | |
|   include WopiUtil
 | |
|   include PermissionHelper
 | |
| 
 | |
|   before_action :load_vars, :authenticate_user_from_token!
 | |
|   before_action :verify_proof!
 | |
| 
 | |
|   # Only used for checkfileinfo
 | |
|   def file_get_endpoint
 | |
|     check_file_info
 | |
|   end
 | |
| 
 | |
|   def file_contents_get_endpoint
 | |
|     # get_file
 | |
|     response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|     response.body = Paperclip.io_adapters.for(@asset.file).read
 | |
|     send_data response.body, disposition: 'inline', content_type: 'text/plain'
 | |
|   end
 | |
| 
 | |
|   def post_file_endpoint
 | |
|     override = request.headers['X-WOPI-Override']
 | |
|     case override
 | |
|     when 'GET_LOCK'
 | |
|       get_lock
 | |
|     when 'PUT_RELATIVE'
 | |
|       put_relative
 | |
|     when 'LOCK'
 | |
|       old_lock = request.headers['X-WOPI-OldLock']
 | |
|       if old_lock.nil?
 | |
|         lock
 | |
|       else
 | |
|         unlock_and_relock
 | |
|       end
 | |
|     when 'UNLOCK'
 | |
|       unlock
 | |
|     when 'REFRESH_LOCK'
 | |
|       refresh_lock
 | |
|     when 'GET_SHARE_URL'
 | |
|       render nothing: :true, status: 501 and return
 | |
|     else
 | |
|       render nothing: :true, status: 404 and return
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   # Only used for putfile
 | |
|   def file_contents_post_endpoint
 | |
|     logger.warn 'WOPI: post_file_contents called'
 | |
|     put_file
 | |
|   end
 | |
| 
 | |
|   def check_file_info
 | |
|     asset_owner_id = @asset.id.to_s
 | |
|     asset_owner_id = @asset.created_by_id.to_s if @asset.created_by_id
 | |
| 
 | |
|     msg = {
 | |
|       BaseFileName:                @asset.file_file_name,
 | |
|       OwnerId:                     asset_owner_id,
 | |
|       Size:                        @asset.file_file_size,
 | |
|       UserId:                      @user.id.to_s,
 | |
|       Version:                     @asset.version.to_s,
 | |
|       SupportsExtendedLockLength:  true,
 | |
|       SupportsGetLock:             true,
 | |
|       SupportsLocks:               true,
 | |
|       SupportsUpdate:              true,
 | |
|       # Setting all users to business until we figure out
 | |
|       # which should NOT be business
 | |
|       LicenseCheckForEditIsEnabled:  true,
 | |
|       UserFriendlyName:              @user.name,
 | |
|       UserCanWrite:                  @can_write,
 | |
|       UserCanNotWriteRelative:       true,
 | |
|       CloseUrl:                      @close_url,
 | |
|       DownloadUrl: url_for(controller: 'assets', action: 'download',
 | |
|                            id: @asset.id),
 | |
|       HostEditUrl: url_for(controller: 'assets', action: 'edit',
 | |
|                            id: @asset.id),
 | |
|       HostViewUrl: url_for(controller: 'assets', action: 'view',
 | |
|                            id: @asset.id),
 | |
|       BreadcrumbBrandName:  @breadcrumb_brand_name,
 | |
|       BreadcrumbBrandUrl:   @breadcrumb_brand_url,
 | |
|       BreadcrumbFolderName: @breadcrumb_folder_name,
 | |
|       BreadcrumbFolderUrl:  @breadcrumb_folder_url
 | |
|     }
 | |
|     response.headers['X-WOPI-HostEndpoint'] = ENV['WOPI_ENDPOINT_URL']
 | |
|     response.headers['X-WOPI-MachineName'] = ENV['WOPI_ENDPOINT_URL']
 | |
|     response.headers['X-WOPI-ServerVersion'] = Constants::APP_VERSION
 | |
|     render json: msg and return
 | |
|   end
 | |
| 
 | |
|   def put_relative
 | |
|     render nothing: :true, status: 501 and return
 | |
|   end
 | |
| 
 | |
|   def lock
 | |
|     lock = request.headers['X-WOPI-Lock']
 | |
|     logger.warn 'WOPI: lock; ' + lock.to_s
 | |
|     render nothing: :true, status: 404 and return if lock.nil? || lock.blank?
 | |
|     @asset.with_lock do
 | |
|       if @asset.locked?
 | |
|         if @asset.lock == lock
 | |
|           @asset.refresh_lock
 | |
|           response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|           render nothing: :true, status: 200 and return
 | |
|         else
 | |
|           response.headers['X-WOPI-Lock'] = @asset.lock
 | |
|           render nothing: :true, status: 409 and return
 | |
|         end
 | |
|       else
 | |
|         @asset.lock_asset(lock)
 | |
|         response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|         render nothing: :true, status: 200 and return
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def unlock_and_relock
 | |
|     logger.warn 'lock and relock'
 | |
|     lock = request.headers['X-WOPI-Lock']
 | |
|     old_lock = request.headers['X-WOPI-OldLock']
 | |
|     if lock.nil? || lock.blank? || old_lock.blank?
 | |
|       render nothing: :true, status: 400 and return
 | |
|     end
 | |
|     @asset.with_lock do
 | |
|       if @asset.locked?
 | |
|         if @asset.lock == old_lock
 | |
|           @asset.unlock
 | |
|           @asset.lock_asset(lock)
 | |
|           response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|           render nothing: :true, status: 200 and return
 | |
|         else
 | |
|           response.headers['X-WOPI-Lock'] = @asset.lock
 | |
|           render nothing: :true, status: 409 and return
 | |
|         end
 | |
|       else
 | |
|         response.headers['X-WOPI-Lock'] = ' '
 | |
|         render nothing: :true, status: 409 and return
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def unlock
 | |
|     lock = request.headers['X-WOPI-Lock']
 | |
|     render nothing: :true, status: 400 and return if lock.nil? || lock.blank?
 | |
|     @asset.with_lock do
 | |
|       if @asset.locked?
 | |
|         logger.warn "WOPI: current asset lock: #{@asset.lock},
 | |
|                      unlocking lock #{lock}"
 | |
|         if @asset.lock == lock
 | |
|           @asset.unlock
 | |
|           @asset.post_process_file # Space is already taken in put_file
 | |
|           create_wopi_file_activity(@user, false)
 | |
| 
 | |
|           response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|           render nothing: :true, status: 200 and return
 | |
|         else
 | |
|           response.headers['X-WOPI-Lock'] = @asset.lock
 | |
|           render nothing: :true, status: 409 and return
 | |
|         end
 | |
|       else
 | |
|         logger.warn 'WOPI: tried to unlock non-locked file'
 | |
|         response.headers['X-WOPI-Lock'] = ' '
 | |
|         render nothing: :true, status: 409 and return
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def refresh_lock
 | |
|     lock = request.headers['X-WOPI-Lock']
 | |
|     render nothing: :true, status: 400 and return if lock.nil? || lock.blank?
 | |
|     @asset.with_lock do
 | |
|       if @asset.locked?
 | |
|         if @asset.lock == lock
 | |
|           @asset.refresh_lock
 | |
|           response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|           response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|           render nothing: :true, status: 200 and return
 | |
|         else
 | |
|           response.headers['X-WOPI-Lock'] = @asset.lock
 | |
|           render nothing: :true, status: 409 and return
 | |
|         end
 | |
|       else
 | |
|         response.headers['X-WOPI-Lock'] = ' '
 | |
|         render nothing: :true, status: 409 and return
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def get_lock
 | |
|     @asset.with_lock do
 | |
|       if @asset.locked?
 | |
|         response.headers['X-WOPI-Lock'] = @asset.lock
 | |
|       else
 | |
|         response.headers['X-WOPI-Lock'] = ' '
 | |
|       end
 | |
|       render nothing: :true, status: 200 and return
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def put_file
 | |
|     @asset.with_lock do
 | |
|       lock = request.headers['X-WOPI-Lock']
 | |
|       if @asset.locked?
 | |
|         if @asset.lock == lock
 | |
|           logger.warn 'WOPI: replacing file'
 | |
| 
 | |
|           @team.release_space(@asset.estimated_size)
 | |
|           @asset.update_contents(request.body)
 | |
|           @asset.last_modified_by = @user
 | |
|           @asset.save
 | |
| 
 | |
|           @team.take_space(@asset.estimated_size)
 | |
|           @team.save
 | |
| 
 | |
|           @protocol.update(updated_at: Time.now) if @protocol
 | |
| 
 | |
|           response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|           render nothing: :true, status: 200 and return
 | |
|         else
 | |
|           logger.warn 'WOPI: wrong lock used to try and modify file'
 | |
|           response.headers['X-WOPI-Lock'] = @asset.lock
 | |
|           render nothing: :true, status: 409 and return
 | |
|         end
 | |
|       elsif !@asset.file_file_size.nil? && @asset.file_file_size.zero?
 | |
|         logger.warn 'WOPI: initializing empty file'
 | |
| 
 | |
|         @team.release_space(@asset.estimated_size)
 | |
|         @asset.update_contents(request.body)
 | |
|         @asset.last_modified_by = @user
 | |
|         @asset.save
 | |
|         @team.save
 | |
| 
 | |
|         response.headers['X-WOPI-ItemVersion'] = @asset.version
 | |
|         render nothing: :true, status: 200 and return
 | |
|       else
 | |
|         logger.warn 'WOPI: trying to modify unlocked file'
 | |
|         response.headers['X-WOPI-Lock'] = ' '
 | |
|         render nothing: :true, status: 409 and return
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def load_vars
 | |
|     @asset = Asset.find_by_id(params[:id])
 | |
|     if @asset.nil?
 | |
|       render nothing: :true, status: 404 and return
 | |
|     else
 | |
|       logger.warn 'Found asset: ' + @asset.id.to_s
 | |
|       step_assoc = @asset.step
 | |
|       result_assoc = @asset.result
 | |
|       @assoc = step_assoc unless step_assoc.nil?
 | |
|       @assoc = result_assoc unless result_assoc.nil?
 | |
| 
 | |
|       if @assoc.class == Step
 | |
|         @protocol = @asset.step.protocol
 | |
|         @team = @protocol.team
 | |
|       else
 | |
|         @my_module = @assoc.my_module
 | |
|         @team = @my_module.experiment.project.team
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def authenticate_user_from_token!
 | |
|     wopi_token = params[:access_token]
 | |
|     if wopi_token.nil?
 | |
|       logger.warn 'WOPI: nil wopi token'
 | |
|       render nothing: :true, status: 401 and return
 | |
|     end
 | |
| 
 | |
|     @user = User.find_by_valid_wopi_token(wopi_token)
 | |
|     if @user.nil?
 | |
|       logger.warn 'WOPI: no user with this token found'
 | |
|       render nothing: :true, status: 401 and return
 | |
|     end
 | |
|     logger.warn 'WOPI: user found by token ' + wopi_token +
 | |
|                 ' ID: ' + @user.id.to_s
 | |
| 
 | |
|     # This is what we get for settings permission methods with
 | |
|     # current_user
 | |
|     @current_user = @user
 | |
|     if @assoc.class == Step
 | |
|       @can_read = can_view_steps_in_protocol(@protocol)
 | |
|       @can_write = can_edit_step_in_protocol(@protocol)
 | |
| 
 | |
|       if @protocol.in_module?
 | |
|         @close_url = protocols_my_module_url(@protocol.my_module,
 | |
|                                              only_path: false,
 | |
|                                              host: ENV['WOPI_BREADCRUMBS_HOST'])
 | |
| 
 | |
|         project = @protocol.my_module.experiment.project
 | |
|         @breadcrumb_brand_name  = project.name
 | |
|         @breadcrumb_brand_url   = project_url(project,
 | |
|                                               only_path: false,
 | |
|                                               host: ENV['WOPI_BREADCRUMBS_HOST'])
 | |
|         @breadcrumb_folder_name = @protocol.my_module.name
 | |
|       else
 | |
|         @close_url = protocols_url(only_path: false,
 | |
|                                    host: ENV['WOPI_BREADCRUMBS_HOST'])
 | |
| 
 | |
|         @breadcrump_brand_name  = 'Projects'
 | |
|         @breadcrumb_brand_url   = root_url(only_path: false,
 | |
|                                            host: ENV['WOPI_BREADCRUMBS_HOST'])
 | |
|         @breadcrumb_folder_name = 'Protocol managament'
 | |
|       end
 | |
|       @breadcrumb_folder_url  = @close_url
 | |
|     else
 | |
|       @can_read = can_view_or_download_result_assets(@my_module)
 | |
|       @can_write = can_edit_result_asset_in_module(@my_module)
 | |
| 
 | |
|       @close_url = results_my_module_url(@my_module,
 | |
|                                          only_path: false,
 | |
|                                          host: ENV['WOPI_BREADCRUMBS_HOST'])
 | |
| 
 | |
|       @breadcrumb_brand_name  = @my_module.experiment.project.name
 | |
|       @breadcrumb_brand_url   = project_url(@my_module.experiment.project,
 | |
|                                             only_path: false,
 | |
|                                             host: ENV['WOPI_BREADCRUMBS_HOST'])
 | |
|       @breadcrumb_folder_name = @my_module.name
 | |
|       @breadcrumb_folder_url  = @close_url
 | |
|     end
 | |
| 
 | |
|     render nothing: :true, status: 404 and return unless @can_read
 | |
|   end
 | |
| 
 | |
|   def verify_proof!
 | |
|     token = params[:access_token].encode('utf-8')
 | |
|     timestamp = request.headers['X-WOPI-TimeStamp'].to_i
 | |
|     signed_proof = request.headers['X-WOPI-Proof']
 | |
|     signed_proof_old = request.headers['X-WOPI-ProofOld']
 | |
|     url = request.original_url.upcase.encode('utf-8')
 | |
| 
 | |
|     if convert_to_unix_timestamp(timestamp) + 20.minutes >= Time.now
 | |
|       if current_wopi_discovery.verify_proof(token, timestamp, signed_proof,
 | |
|                                              signed_proof_old, url)
 | |
|         logger.warn 'WOPI: proof verification: successful'
 | |
|       else
 | |
|         logger.warn 'WOPI: proof verification: not verified'
 | |
|         render nothing: :true, status: 500 and return
 | |
|       end
 | |
|     else
 | |
|       logger.warn 'WOPI: proof verification: timestamp too old; ' +
 | |
|                   timestamp.to_s
 | |
|       render nothing: :true, status: 500 and return
 | |
|     end
 | |
|   rescue => e
 | |
|     logger.warn 'WOPI: proof verification: failed; ' + e.message
 | |
|     render nothing: :true, status: 500 and return
 | |
|   end
 | |
| end
 |