mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 18:03:12 +00:00
90 lines
2 KiB
Dart
90 lines
2 KiB
Dart
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'hetzner_server_info.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class HetznerServerInfo {
|
||
|
final int id;
|
||
|
final String name;
|
||
|
final ServerStatus status;
|
||
|
final DateTime created;
|
||
|
|
||
|
@JsonKey(name: 'server_type')
|
||
|
final HetznerServerTypeInfo serverType;
|
||
|
|
||
|
@JsonKey(name: 'datacenter', fromJson: HetznerServerInfo.locationFromJson)
|
||
|
final HetznerLocation location;
|
||
|
|
||
|
static HetznerLocation locationFromJson(Map json) =>
|
||
|
HetznerLocation.fromJson(json['location']);
|
||
|
|
||
|
static HetznerServerInfo fromJson(Map<String, dynamic> json) =>
|
||
|
_$HetznerServerInfoFromJson(json);
|
||
|
|
||
|
HetznerServerInfo(
|
||
|
this.id,
|
||
|
this.name,
|
||
|
this.status,
|
||
|
this.created,
|
||
|
this.serverType,
|
||
|
this.location,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
enum ServerStatus {
|
||
|
running,
|
||
|
initializing,
|
||
|
starting,
|
||
|
stopping,
|
||
|
off,
|
||
|
deleting,
|
||
|
migrating,
|
||
|
rebuilding,
|
||
|
unknown,
|
||
|
}
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class HetznerServerTypeInfo {
|
||
|
final int cores;
|
||
|
final num memory;
|
||
|
final int disk;
|
||
|
|
||
|
final List<HetznerPriceInfo> prices;
|
||
|
|
||
|
HetznerServerTypeInfo(this.cores, this.memory, this.disk, this.prices);
|
||
|
|
||
|
static HetznerServerTypeInfo fromJson(Map<String, dynamic> json) =>
|
||
|
_$HetznerServerTypeInfoFromJson(json);
|
||
|
}
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class HetznerPriceInfo {
|
||
|
HetznerPriceInfo(this.hourly, this.monthly);
|
||
|
|
||
|
@JsonKey(name: 'price_hourly', fromJson: HetznerPriceInfo.getPrice)
|
||
|
final double hourly;
|
||
|
|
||
|
@JsonKey(name: 'price_monthly', fromJson: HetznerPriceInfo.getPrice)
|
||
|
final double monthly;
|
||
|
|
||
|
static HetznerPriceInfo fromJson(Map<String, dynamic> json) =>
|
||
|
_$HetznerPriceInfoFromJson(json);
|
||
|
|
||
|
static double getPrice(Map json) => double.parse(json['gross'] as String);
|
||
|
}
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class HetznerLocation {
|
||
|
final String country;
|
||
|
final String city;
|
||
|
final String description;
|
||
|
|
||
|
@JsonKey(name: 'network_zone')
|
||
|
final String zone;
|
||
|
|
||
|
HetznerLocation(this.country, this.city, this.description, this.zone);
|
||
|
|
||
|
static HetznerLocation fromJson(Map<String, dynamic> json) =>
|
||
|
_$HetznerLocationFromJson(json);
|
||
|
}
|