forked from panoratech/Panora
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe83ba5
commit 33e34ea
Showing
5 changed files
with
150 additions
and
2 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
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; |