用 Swift 编写的 TeamCity API 客户端
这是一个 正在进行中 的项目 - 将很快添加更多端点。该项目灵感来源于 TeamCitySharp。
发送合并请求,最好附带测试 :)
我们使用 Cocoapods - 因此只需
pod 'SwiftCity', '0.1'
请注意 TeamCity API 根据权限提供字段 - 因此如果您没有看到您预期中的字段,请先检查这里..
let connection = TeamCityConnection(server: "http://teamcity-server.example.com")
let client = TeamCityClient(connection: connection)
client.authenticate({ () -> () in
print("Authenticated!")
}) { (error) -> () in
print("Failed to Authenticate!")
}
let connection = TeamCityConnection(server: "http://teamcity-server.example.com", username: "username", password: "password")
let client = TeamCityClient(connection: connection)
client.authenticate({ () -> () in
print("Authenticated!")
}) { (error) -> () in
print("Failed to Authenticate!")
}
client.allProjects({ (projects) -> () in
print("Projects: \(projects)")
}) { (error: NSError) -> () in
print("Projects Error: \(error)")
}
client.projectById("Example", successful: { (project) -> () in
print("Project: \(project)")
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.allBuildTypes({ (types: BuildTypes) -> () in
print(types)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.buildTypesById("Example_BuildConfig", successful: { (type: BuildType) -> () in
print(type)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.buildQueue({ (queue: BuildQueue) -> () in
print(queue.queue)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.serverInformation({ (info: ServerInformation) -> () in
print(info)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.allVcsRoots({ (roots: VCSRoots) -> () in
print(roots)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.vcsRootById("Puppet_Github", successful: { (root: VCSRoot?) -> () in
print(root)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.allUsers({ (users: Users) -> () in
print(users)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.userByName("example_api_user", successful: { (user: User?) -> () in
print(user)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.userById(2, successful: { (user: User?) -> () in
print(user)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.allGroups({ (groups: Groups) -> () in
print(groups)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.groupByKey("MIDDLE_GROUP", successful: { (group: Group?) -> () in
print(group)
}) { (error:NSError) -> () in
print("Error: \(error)")
}
client.allBuildAgents({ (agents: BuildAgents) -> () in
print(agents)
}) { (error:NSError) -> () in
print("Error: \(error)")
}
client.buildAgentById(1, successful: { (agent: BuildAgent?) -> () in
print(agent)
}) { (error:NSError) -> () in
print("Error: \(error)")
}
client.buildAgentByName("tc-buildagent-01", successful: { (agent: BuildAgent?) -> () in
print(agent)
}) { (error:NSError) -> () in
print("Error: \(error)")
}
client.allBuildAgentPools({ (pools: BuildAgentPools) -> () in
print(pools)
}) { (error: NSError) -> () in
print(error)
}
client.buildAgentPoolById(1, successful: { (agent: BuildAgentPool?) -> () in
print(agent)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
let start = 10
let count = 10
client.allBuilds(start, count: count, successful: { (builds: Builds) -> () in
print(builds)
}) { (error: NSError) -> () in
print("Error: \(error)")
}
client.buildById(1561, successful: { (build: Build?) -> () in
print(build)
}) { (error: NSError) -> () in
print("Error: \(error)")
}