mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 01acbe3cda
			
		
	
	01acbe3cda
	
	
	
		
			
			- Add `actor=app` parameter to Linear OAuth authorization URL for consistent app-level authorization https://linear.app/developers/oauth-actor-authorization - Implement user attribution for Linear issue creation and linking using `createAsUser` and `displayIconUrl` parameters - Enhance Linear integration to properly attribute actions to specific Chatwoot agents **Note** - The displayIconUrl parameter is being sent correctly to Linear's GraphQL API (verified through testing), but there is an issues with icon is not attaching properly. - We might need to disconnect the integration connect again.
		
			
				
	
	
		
			136 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class Api::V1::Accounts::Integrations::LinearController < Api::V1::Accounts::BaseController
 | |
|   before_action :fetch_conversation, only: [:create_issue, :link_issue, :unlink_issue, :linked_issues]
 | |
|   before_action :fetch_hook, only: [:destroy]
 | |
| 
 | |
|   def destroy
 | |
|     revoke_linear_token
 | |
|     @hook.destroy!
 | |
|     head :ok
 | |
|   end
 | |
| 
 | |
|   def teams
 | |
|     teams = linear_processor_service.teams
 | |
|     if teams[:error]
 | |
|       render json: { error: teams[:error] }, status: :unprocessable_entity
 | |
|     else
 | |
|       render json: teams[:data], status: :ok
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def team_entities
 | |
|     team_id = permitted_params[:team_id]
 | |
|     team_entities = linear_processor_service.team_entities(team_id)
 | |
|     if team_entities[:error]
 | |
|       render json: { error: team_entities[:error] }, status: :unprocessable_entity
 | |
|     else
 | |
|       render json: team_entities[:data], status: :ok
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def create_issue
 | |
|     issue = linear_processor_service.create_issue(permitted_params, Current.user)
 | |
|     if issue[:error]
 | |
|       render json: { error: issue[:error] }, status: :unprocessable_entity
 | |
|     else
 | |
|       Linear::ActivityMessageService.new(
 | |
|         conversation: @conversation,
 | |
|         action_type: :issue_created,
 | |
|         issue_data: { id: issue[:data][:identifier] },
 | |
|         user: Current.user
 | |
|       ).perform
 | |
|       render json: issue[:data], status: :ok
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def link_issue
 | |
|     issue_id = permitted_params[:issue_id]
 | |
|     title = permitted_params[:title]
 | |
|     issue = linear_processor_service.link_issue(conversation_link, issue_id, title, Current.user)
 | |
|     if issue[:error]
 | |
|       render json: { error: issue[:error] }, status: :unprocessable_entity
 | |
|     else
 | |
|       Linear::ActivityMessageService.new(
 | |
|         conversation: @conversation,
 | |
|         action_type: :issue_linked,
 | |
|         issue_data: { id: issue_id },
 | |
|         user: Current.user
 | |
|       ).perform
 | |
|       render json: issue[:data], status: :ok
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def unlink_issue
 | |
|     link_id = permitted_params[:link_id]
 | |
|     issue_id = permitted_params[:issue_id]
 | |
|     issue = linear_processor_service.unlink_issue(link_id)
 | |
| 
 | |
|     if issue[:error]
 | |
|       render json: { error: issue[:error] }, status: :unprocessable_entity
 | |
|     else
 | |
|       Linear::ActivityMessageService.new(
 | |
|         conversation: @conversation,
 | |
|         action_type: :issue_unlinked,
 | |
|         issue_data: { id: issue_id },
 | |
|         user: Current.user
 | |
|       ).perform
 | |
|       render json: issue[:data], status: :ok
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def linked_issues
 | |
|     issues = linear_processor_service.linked_issues(conversation_link)
 | |
| 
 | |
|     if issues[:error]
 | |
|       render json: { error: issues[:error] }, status: :unprocessable_entity
 | |
|     else
 | |
|       render json: issues[:data], status: :ok
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def search_issue
 | |
|     render json: { error: 'Specify search string with parameter q' }, status: :unprocessable_entity if params[:q].blank? && return
 | |
| 
 | |
|     term = params[:q]
 | |
|     issues = linear_processor_service.search_issue(term)
 | |
|     if issues[:error]
 | |
|       render json: { error: issues[:error] }, status: :unprocessable_entity
 | |
|     else
 | |
|       render json: issues[:data], status: :ok
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def conversation_link
 | |
|     "#{ENV.fetch('FRONTEND_URL', nil)}/app/accounts/#{Current.account.id}/conversations/#{@conversation.display_id}"
 | |
|   end
 | |
| 
 | |
|   def fetch_conversation
 | |
|     @conversation = Current.account.conversations.find_by!(display_id: permitted_params[:conversation_id])
 | |
|   end
 | |
| 
 | |
|   def linear_processor_service
 | |
|     Integrations::Linear::ProcessorService.new(account: Current.account)
 | |
|   end
 | |
| 
 | |
|   def permitted_params
 | |
|     params.permit(:team_id, :project_id, :conversation_id, :issue_id, :link_id, :title, :description, :assignee_id, :priority, :state_id,
 | |
|                   label_ids: [])
 | |
|   end
 | |
| 
 | |
|   def fetch_hook
 | |
|     @hook = Integrations::Hook.where(account: Current.account).find_by(app_id: 'linear')
 | |
|   end
 | |
| 
 | |
|   def revoke_linear_token
 | |
|     return unless @hook&.access_token
 | |
| 
 | |
|     begin
 | |
|       linear_client = Linear.new(@hook.access_token)
 | |
|       linear_client.revoke_token
 | |
|     rescue StandardError => e
 | |
|       Rails.logger.error "Failed to revoke Linear token: #{e.message}"
 | |
|     end
 | |
|   end
 | |
| end
 |