Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import { Client } from 'cozy-client'
import { Konnector } from 'doctypes'
import triggersMutations from 'cozy-harvest-lib/dist/connections/triggers'
import FluidConfigService from 'services/fluidConfigService'
import { AccountService } from 'services/accountService'
import { FluidType } from 'enum/fluid.enum'
export default class KonnectorStatusService {
private _client: Client
constructor(_client: Client) {
this._client = _client
}
getKonnectorsStatus() {
return 'konnector status'
}
async getTriggerbyKonnector(konnector: Konnector) {
const query = this._client
.find('io.cozy.triggers')
.where({ 'message.konnector': konnector.slug })
.sortBy([{ 'cozyMetadata.updatedAt': 'desc' }])
.limitBy(1)
return await this._client.query(query)
}
async getTriggerbyKonnectorSlug(konnectorSlug: string) {
const query = this._client
.find('io.cozy.triggers')
.where({ 'message.konnector': konnectorSlug })
.sortBy([{ 'cozyMetadata.updatedAt': 'desc' }])
.limitBy(1)
return await this._client.query(query)
}
async getAllTriggers() {
const query = this._client.find('io.cozy.triggers')
const result = await this._client.query(query)
return result.data
}
async getAllJobs() {
const query = this._client.find('io.cozy.jobs')
return await this._client.query(query)
}
async getAllKonnectors() {
const query = this._client.find('io.cozy.konnectors')
const result = await this._client.query(query)
return result.data
}
static async getSingleTrigger(client: Client, id: string) {
try {
const trigger = await triggersMutations(client).fetchTrigger(id)
return trigger
} catch (error) {
throw error
}
}
/**
* Return a FluidType array containing each konnector fluid with a trigger
* @param void
* @return {Promise<FluidType[]>} configured FluidTypes array
*/
async getKonnectorTiggerStatus(): Promise<FluidType[]> {
try {
const fluidConfig = new FluidConfigService().getFluidConfig()
const [elecData, gasData, waterData] = await Promise.all([
this.getTriggerbyKonnectorSlug(
fluidConfig[FluidType.ELECTRICITY].konnectorConfig.slug
),
this.getTriggerbyKonnectorSlug(
fluidConfig[FluidType.GAS].konnectorConfig.slug
),
this.getTriggerbyKonnectorSlug(
fluidConfig[FluidType.WATER].konnectorConfig.slug
),
])
const data: FluidType[] = []
if (elecData && elecData.data && elecData.data[0]) {
data.push(fluidConfig[FluidType.ELECTRICITY].fluidTypeId)
}
if (gasData && gasData.data && gasData.data[0]) {
data.push(fluidConfig[FluidType.GAS].fluidTypeId)
}
if (waterData && waterData.data && waterData.data[0]) {
data.push(fluidConfig[FluidType.WATER].fluidTypeId)
}
return data
} catch (error) {
throw error
}
}
/**
* Return a FluidType array containing each konnector fluid with a account
* @param void
* @return {Promise<FluidType[]>} configured FluidTypes array
*/
async getKonnectorAccountStatus(): Promise<FluidType[]> {
try {
const fluidConfig = new FluidConfigService().getFluidConfig()
const [elecData, gasData, waterData] = await Promise.all([
AccountService.getAccountByType(
this._client,
fluidConfig[FluidType.ELECTRICITY].konnectorConfig.slug
),
AccountService.getAccountByType(
this._client,
fluidConfig[FluidType.GAS].konnectorConfig.slug
),
AccountService.getAccountByType(
this._client,
fluidConfig[FluidType.WATER].konnectorConfig.slug
),
])
const data: FluidType[] = []
if (elecData && elecData.data && elecData.data[0]) {
data.push(fluidConfig[FluidType.ELECTRICITY].fluidTypeId)
}
if (gasData && gasData.data && gasData.data[0]) {
data.push(fluidConfig[FluidType.GAS].fluidTypeId)
}
if (waterData && waterData.data && waterData.data[0]) {
data.push(fluidConfig[FluidType.WATER].fluidTypeId)
}
return data
} catch (error) {
throw error
}
}
}