mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 01:31:19 +00:00
96 lines
2.8 KiB
Dart
96 lines
2.8 KiB
Dart
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.0
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
part of openapi.api;
|
|
|
|
class QueryParam {
|
|
const QueryParam(this.name, this.value);
|
|
|
|
final String name;
|
|
final String value;
|
|
|
|
@override
|
|
String toString() => '${Uri.encodeQueryComponent(name)}=${Uri.encodeQueryComponent(value)}';
|
|
}
|
|
|
|
// Ported from the Java version.
|
|
Iterable<QueryParam> _convertParametersForCollectionFormat(
|
|
String collectionFormat,
|
|
String name,
|
|
dynamic value,
|
|
) {
|
|
final params = <QueryParam>[];
|
|
|
|
// preconditions
|
|
if (name != null && !name.isEmpty && value != null) {
|
|
if (value is List) {
|
|
// get the collection format, default: csv
|
|
collectionFormat = (collectionFormat == null || collectionFormat.isEmpty)
|
|
? 'csv'
|
|
: collectionFormat;
|
|
|
|
if (collectionFormat == 'multi') {
|
|
return value.map((v) => QueryParam(name, parameterToString(v)));
|
|
}
|
|
|
|
final delimiter = _delimiters[collectionFormat] ?? ',';
|
|
|
|
params.add(QueryParam(name, value.map((v) => parameterToString(v)).join(delimiter)));
|
|
} else {
|
|
params.add(QueryParam(name, parameterToString(value)));
|
|
}
|
|
}
|
|
|
|
return params;
|
|
}
|
|
|
|
/// Format the given parameter object into a [String].
|
|
String parameterToString(dynamic value) {
|
|
if (value == null) {
|
|
return '';
|
|
}
|
|
if (value is DateTime) {
|
|
return value.toUtc().toIso8601String();
|
|
}
|
|
if (value is ActionType) {
|
|
return ActionTypeTypeTransformer().encode(value).toString();
|
|
}
|
|
if (value is ConditionType) {
|
|
return ConditionTypeTypeTransformer().encode(value).toString();
|
|
}
|
|
if (value is ConditionValue) {
|
|
return ConditionValueTypeTransformer().encode(value).toString();
|
|
}
|
|
if (value is ConnectionStatus) {
|
|
return ConnectionStatusTypeTransformer().encode(value).toString();
|
|
}
|
|
if (value is DeviceType) {
|
|
return DeviceTypeTypeTransformer().encode(value).toString();
|
|
}
|
|
if (value is MeansOfCommunication) {
|
|
return MeansOfCommunicationTypeTransformer().encode(value).toString();
|
|
}
|
|
if (value is TriggerType) {
|
|
return TriggerTypeTypeTransformer().encode(value).toString();
|
|
}
|
|
if (value is ViewBy) {
|
|
return ViewByTypeTransformer().encode(value).toString();
|
|
}
|
|
return value.toString();
|
|
}
|
|
|
|
/// Returns the decoded body as UTF-8 if the given headers indicate an 'application/json'
|
|
/// content type. Otherwise, returns the decoded body as decoded by dart:http package.
|
|
String _decodeBodyBytes(Response response) {
|
|
final contentType = response.headers['content-type'];
|
|
return contentType != null && contentType.toLowerCase().startsWith('application/json')
|
|
? response.bodyBytes == null ? null : utf8.decode(response.bodyBytes)
|
|
: response.body;
|
|
}
|