Tusker/Pachyderm/Model/List.swift

50 lines
1.5 KiB
Swift
Raw Normal View History

2018-09-11 14:52:21 +00:00
//
// List.swift
// Pachyderm
//
// Created by Shadowfacts on 9/9/18.
// Copyright © 2018 Shadowfacts. All rights reserved.
//
import Foundation
public class List: Decodable {
2018-09-11 14:52:21 +00:00
public let id: String
public let title: String
2018-09-11 14:52:21 +00:00
2019-12-17 23:48:29 +00:00
public var timeline: Timeline {
return .list(id: id)
}
public static func getAccounts(_ list: List, range: RequestRange = .default) -> Request<[Account]> {
var request = Request<[Account]>(method: .get, path: "/api/v1/lists/\(list.id)/accounts")
2018-09-11 14:52:21 +00:00
request.range = range
return request
2018-09-11 14:52:21 +00:00
}
public static func update(_ list: List, title: String) -> Request<List> {
return Request<List>(method: .put, path: "/api/v1/lists/\(list.id)", body: .parameters(["title" => title]))
2018-09-11 14:52:21 +00:00
}
public static func delete(_ list: List) -> Request<Empty> {
return Request<Empty>(method: .delete, path: "/api/v1/lists/\(list.id)")
2018-09-11 14:52:21 +00:00
}
2019-12-18 03:56:53 +00:00
public static func add(_ list: List, accounts accountIDs: [String]) -> Request<Empty> {
return Request<Empty>(method: .post, path: "/api/v1/lists/\(list.id)/accounts", body: .parameters(
2019-12-18 03:56:53 +00:00
"account_ids" => accountIDs
2018-09-11 14:52:21 +00:00
))
}
2019-12-18 03:56:53 +00:00
public static func remove(_ list: List, accounts accountIDs: [String]) -> Request<Empty> {
return Request<Empty>(method: .delete, path: "/api/v1/lists/\(list.id)/accounts", body: .parameters(
2019-12-18 03:56:53 +00:00
"account_ids" => accountIDs
2018-09-11 14:52:21 +00:00
))
}
private enum CodingKeys: String, CodingKey {
case id
case title
}
}