Riven/srcgen/dto.rs.dt

59 lines
1.7 KiB
Plaintext
Raw Normal View History

2019-10-19 09:25:09 +00:00
{{
const spec = require('./.spec.json');
const dotUtils = require('./dotUtils.js');
}}
// This file is automatically generated.
// Do not directly edit.
// Generated on {{= (new Date).toISOString() }}
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version {{= spec.info.version }}
{{
let schemas = spec.components.schemas;
let schemaKeyByEndpoint = Object.keys(schemas)
.filter(schemaKey => 'Error' != schemaKey)
.groupBy(schemaKey => schemaKey.split('.')[0]);
for (let [endpoint, schemaKeyGroup] of schemaKeyByEndpoint) {
}}
// {{= endpoint }}
#[allow(dead_code)]
2019-10-19 21:39:53 +00:00
pub mod {{= dotUtils.changeCase.snakeCase(endpoint) }} {
2019-10-19 09:25:09 +00:00
{{
for (let schemaKey of schemaKeyGroup) {
let [endpoint, rawSchemaName] = schemaKey.split('.');
let schemaName = dotUtils.normalizeSchemaName(rawSchemaName);
let schema = schemas[schemaKey];
let props = schema.properties;
}}
/// {{= schemaName }} data object. This class is automatically generated.
{{? schema.description }}
/// # Description
/// {{= schema.description }}
{{?}}
2019-10-19 21:39:53 +00:00
#[derive(Debug)]
#[derive(serde::Serialize, serde::Deserialize)]
2019-10-19 09:25:09 +00:00
pub struct {{= schemaName }} {
2019-10-19 21:39:53 +00:00
{{
for (let [ propKey, prop ] of Object.entries(props))
{
let name = dotUtils.normalizePropName(propKey, schemaName, prop);
}}
{{? prop.description }}
/// {{= prop.description.split('\n').map(x => x.trim()).join(' \r\n /// ') }}
{{?}}
{{= dotUtils.formatJsonProperty(propKey) }}
pub {{= name }}: {{= dotUtils.stringifyType(prop) }},
{{
}
}}
2019-10-19 09:25:09 +00:00
}
{{
}
}}
}
{{
}
}}