| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- 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 <http://www.gnu.org/licenses/>.
- */
- // @flow
- import type { Schema } from '../../../types/Schema'
- import type { Field } from '../../../types/Field'
- import DefaultConnectionSchemaParser from '../default/SchemaPlugin'
- const customSort = (fields: Field[]) => {
- const sortPriority = {
- name: 1,
- description: 2,
- username: 3,
- password: 4,
- auth_url: 5,
- project_name: 6,
- glance_api_version: 7,
- identity_api_version: 8,
- project_domain: 9,
- user_domain: 10,
- }
- fields.sort((a, b) => {
- if (sortPriority[a.name] && sortPriority[b.name]) {
- return sortPriority[a.name] - sortPriority[b.name]
- }
- if (sortPriority[a.name]) {
- return -1
- }
- if (sortPriority[b.name]) {
- return 1
- }
- return a.name.localeCompare(b.name)
- })
- return fields
- }
- export default class ConnectionSchemaParser {
- static parseSchemaToFields(schema: Schema): Field[] {
- let fields = DefaultConnectionSchemaParser.parseSchemaToFields(schema)
- let identityField = fields.find(f => f.name === 'identity_api_version')
- if (identityField && !identityField.default) {
- identityField.default = identityField.minimum
- }
- let createInputChoice = (name: string, field1Name: string, field2Name: string) => {
- let field1 = fields.find(f => f.name === field1Name)
- let field2 = fields.find(f => f.name === field2Name)
- if (field1 && field2) {
- field1.label = 'Name'
- field2.label = 'ID'
- let field: Field = {
- name,
- type: 'input-choice',
- items: [field1, field2],
- }
- fields.push(field)
- }
- }
- createInputChoice('project_domain', 'project_domain_name', 'project_domain_id')
- createInputChoice('user_domain', 'user_domain_name', 'user_domain_id')
- customSort(fields)
- return fields
- }
- static parseFieldsToPayload(data: { [string]: mixed }, schema: Schema) {
- delete data.project_domain
- delete data.user_domain
- let payload = DefaultConnectionSchemaParser.parseFieldsToPayload(data, schema)
- return payload
- }
- }
|