/*
Copyright (C) 2017 Cloudbase Solutions SRL
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
*/
// @flow
import cookie from 'js-cookie'
import Api from '../utils/ApiCaller'
import { servicesUrl, providerTypes } from '../config'
import { SchemaParser } from './Schemas'
import type { Field } from '../types/Field'
import type { Providers } from '../types/Providers'
import type { DestinationOption } from '../types/Endpoint'
class ProviderSource {
static getConnectionInfoSchema(providerName: string): Promise {
return new Promise((resolve, reject) => {
let projectId = cookie.get('projectId')
Api.get(`${servicesUrl.coriolis}/${projectId || 'null'}/providers/${providerName}/schemas/${providerTypes.CONNECTION}`).then(response => {
let schema = response.data.schemas.connection_info_schema
schema = SchemaParser.connectionSchemaToFields(providerName, schema)
resolve(schema)
}).catch(reject)
})
}
static loadProviders(): Promise {
return new Promise((resolve, reject) => {
let projectId = cookie.get('projectId')
Api.get(`${servicesUrl.coriolis}/${projectId || 'null'}/providers`).then(response => {
resolve(response.data.providers)
}).catch(reject)
})
}
static loadOptionsSchema(providerName: string, schemaType: string): Promise {
return new Promise((resolve, reject) => {
let projectId = cookie.get('projectId')
let schemaTypeInt = schemaType === 'migration' ? providerTypes.TARGET_MIGRATION : providerTypes.TARGET_REPLICA
Api.get(`${servicesUrl.coriolis}/${projectId || 'null'}/providers/${providerName}/schemas/${schemaTypeInt}`).then(response => {
let schema = response.data.schemas.destination_environment_schema
let fields = SchemaParser.optionsSchemaToFields(providerName, schema)
resolve(fields)
}).catch(reject)
})
}
static getDestinationOptions(endpointId: string): Promise {
return new Promise((resolve, reject) => {
let projectId = cookie.get('projectId')
Api.get(`${servicesUrl.coriolis}/${projectId || 'null'}/endpoints/${endpointId}/destination-options`).then(response => {
let options = response.data.destination_options
resolve(options)
}).catch(() => { reject() })
})
}
}
export default ProviderSource