-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #612 from ganimtron-10/ticketing-linear
Feat: Linear Integration (Ticketing)
- Loading branch information
Showing
31 changed files
with
1,202 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
INSERT INTO users (id_user, identification_strategy, email, password_hash, first_name, last_name) VALUES | ||
('0ce39030-2901-4c56-8db0-5e326182ec6b', 'b2c','[email protected]', '$2b$10$Y7Q8TWGyGuc5ecdIASbBsuXMo3q/Rs3/cnY.mLZP4tUgfGUOCUBlG', 'local', 'Panora'); | ||
|
||
INSERT INTO connector_sets (id_connector_set, crm_hubspot, crm_zoho, crm_pipedrive, crm_attio, crm_zendesk, crm_close, tcg_zendesk, tcg_gorgias, tcg_front, tcg_jira, tcg_gitlab, fs_box, tcg_github, hris_deel, hris_sage, ats_ashby, crm_microsoftdynamicssales, ecom_webflow) VALUES | ||
('1709da40-17f7-4d3a-93a0-96dc5da6ddd7', TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE), | ||
('852dfff8-ab63-4530-ae49-e4b2924407f8', TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE), | ||
('aed0f856-f802-4a79-8640-66d441581a99', TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE); | ||
INSERT INTO connector_sets (id_connector_set, crm_hubspot, crm_zoho, crm_pipedrive, crm_attio, crm_zendesk, crm_close, tcg_zendesk, tcg_gorgias, tcg_front, tcg_jira, tcg_gitlab, fs_box, tcg_github, hris_deel, hris_sage, ats_ashby, crm_microsoftdynamicssales, ecom_webflow, tcg_linear) VALUES | ||
('1709da40-17f7-4d3a-93a0-96dc5da6ddd7', TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE), | ||
('852dfff8-ab63-4530-ae49-e4b2924407f8', TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE), | ||
('aed0f856-f802-4a79-8640-66d441581a99', TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE); | ||
|
||
INSERT INTO projects (id_project, name, sync_mode, id_user, id_connector_set) VALUES | ||
('1e468c15-aa57-4448-aa2b-7fed640d1e3d', 'Project 1', 'pull', '0ce39030-2901-4c56-8db0-5e326182ec6b', '1709da40-17f7-4d3a-93a0-96dc5da6ddd7'), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
packages/api/src/ticketing/collection/services/linear/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import { Injectable } from '@nestjs/common'; | ||
import { LoggerService } from '@@core/@core-services/logger/logger.service'; | ||
import { PrismaService } from '@@core/@core-services/prisma/prisma.service'; | ||
import { EncryptionService } from '@@core/@core-services/encryption/encryption.service'; | ||
import { TicketingObject } from '@ticketing/@lib/@types'; | ||
import { ApiResponse } from '@@core/utils/types'; | ||
import axios from 'axios'; | ||
import { ActionType, handle3rdPartyServiceError } from '@@core/utils/errors'; | ||
import { ServiceRegistry } from '../registry.service'; | ||
import { ICollectionService } from '@ticketing/collection/types'; | ||
import { LinearCollectionOutput, LinearCollectionInput } from './types'; | ||
import { SyncParam } from '@@core/utils/types/interface'; | ||
|
||
@Injectable() | ||
export class LinearService implements ICollectionService { | ||
constructor( | ||
private prisma: PrismaService, | ||
private logger: LoggerService, | ||
private cryptoService: EncryptionService, | ||
private registry: ServiceRegistry, | ||
) { | ||
this.logger.setContext( | ||
TicketingObject.collection.toUpperCase() + ':' + LinearService.name, | ||
); | ||
this.registry.registerService('linear', this); | ||
} | ||
|
||
async sync(data: SyncParam): Promise<ApiResponse<LinearCollectionOutput[]>> { | ||
try { | ||
const { linkedUserId } = data; | ||
|
||
const connection = await this.prisma.connections.findFirst({ | ||
where: { | ||
id_linked_user: linkedUserId, | ||
provider_slug: 'linear', | ||
vertical: 'ticketing', | ||
}, | ||
}); | ||
|
||
const projectQuery = { | ||
"query": "query { projects { nodes { id, name, description } }}" | ||
}; | ||
|
||
let resp = await axios.post( | ||
`${connection.account_url}`, | ||
projectQuery, { | ||
headers: { | ||
'Content-Type': 'application/json', | ||
Authorization: `Bearer ${this.cryptoService.decrypt( | ||
connection.access_token, | ||
)}`, | ||
}, | ||
}); | ||
this.logger.log(`Synced linear collections !`); | ||
|
||
return { | ||
data: resp.data.data.projects.nodes, | ||
message: 'Linear collections retrieved', | ||
statusCode: 200, | ||
}; | ||
} catch (error) { | ||
throw error; | ||
} | ||
} | ||
} |
69 changes: 69 additions & 0 deletions
69
packages/api/src/ticketing/collection/services/linear/mappers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import { ICollectionMapper } from '@ticketing/collection/types'; | ||
import { LinearCollectionInput, LinearCollectionOutput } from './types'; | ||
import { | ||
UnifiedTicketingCollectionInput, | ||
UnifiedTicketingCollectionOutput, | ||
} from '@ticketing/collection/types/model.unified'; | ||
import { MappersRegistry } from '@@core/@core-services/registries/mappers.registry'; | ||
import { Injectable } from '@nestjs/common'; | ||
import { Utils } from '@ticketing/@lib/@utils'; | ||
|
||
@Injectable() | ||
export class LinearCollectionMapper implements ICollectionMapper { | ||
constructor(private mappersRegistry: MappersRegistry, private utils: Utils) { | ||
this.mappersRegistry.registerService( | ||
'ticketing', | ||
'collection', | ||
'linear', | ||
this, | ||
); | ||
} | ||
desunify( | ||
source: UnifiedTicketingCollectionInput, | ||
customFieldMappings?: { | ||
slug: string; | ||
remote_id: string; | ||
}[], | ||
): LinearCollectionInput { | ||
return; | ||
} | ||
|
||
unify( | ||
source: LinearCollectionOutput | LinearCollectionOutput[], | ||
connectionId: string, | ||
customFieldMappings?: { | ||
slug: string; | ||
remote_id: string; | ||
}[], | ||
): UnifiedTicketingCollectionOutput | UnifiedTicketingCollectionOutput[] { | ||
// If the source is not an array, convert it to an array for mapping | ||
const sourcesArray = Array.isArray(source) ? source : [source]; | ||
|
||
return sourcesArray.map((collection) => | ||
this.mapSingleCollectionToUnified( | ||
collection, | ||
connectionId, | ||
customFieldMappings, | ||
), | ||
); | ||
} | ||
|
||
private mapSingleCollectionToUnified( | ||
collection: LinearCollectionOutput, | ||
connectionId: string, | ||
customFieldMappings?: { | ||
slug: string; | ||
remote_id: string; | ||
}[], | ||
): UnifiedTicketingCollectionOutput { | ||
const unifiedCollection: UnifiedTicketingCollectionOutput = { | ||
remote_id: collection.id, | ||
remote_data: collection, | ||
name: collection.name, | ||
description: collection.description, | ||
collection_type: 'PROJECT', | ||
}; | ||
|
||
return unifiedCollection; | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
packages/api/src/ticketing/collection/services/linear/types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
interface LinearCollection { | ||
id: string | ||
name: string | ||
description: string | ||
} | ||
|
||
export type LinearCollectionInput = Partial<LinearCollection>; | ||
export type LinearCollectionOutput = LinearCollectionInput; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.