This is an experimental Cloudant client library written in Swift. It is not supported.
Applications use swift-cloudant to store, index and query remote JSON data on Cloudant or CouchDB.
Swift-Cloudant is an Apache CouchDB™ client written in Swift 3. It is built by Cloudant and is available under the Apache 2.0 license.
This is an early-release version of the library, with support for the following operations:
- Getting documents by doc ID.
- Updating and deleting documents.
- Creating and deleting databases.
We will be rounding out the feature set in upcoming releases.
Currently it does not support being called from Objective-C.
SwiftCloudant is available using the Swift Package Manager and CocoaPods.
To use with CocoaPods add the following line to your Podfile:
pod SwiftCloudant, :git => 'https://github.com/cloudant/swift-cloudant.git'To use with the swift package manager add the following line to your dependencies in your Package.swift:
.Package(url: "https://github.com/cloudant/swift-cloudant.git")import SwiftCloudant
// Create a CouchDBClient
let cloudantURL = NSURL(string:"https://username.cloudant.com")!
let client = CouchDBClient(url:cloudantURL, username:"username", password:"password")
let dbName = "database"
// Create a document
let create = PutDocumentOperation(id: "doc1", body: ["hello":"world"], databaseName: dbName) {(response, httpInfo, error) in
if let error = error {
print("Encountered an error while creating a document. Error:\(error)")
} else {
print("Created document \(response?["id"]) with revision id \(response?["rev"])")
}
}
client.add(operation:create)
// create an attachment
let attachment = "This is my awesome essay attachment for my document"
let putAttachment = PutAttachmentOperation(name: "myAwesomeAttachment",
contentType:"text/plain",
data: attachment.data(using: NSUTF8StringEncoding, allowLossyConversion: false),
documentID: "doc1"
revision: "1-revisionidhere",
databaseName: dbName) { (response, info, error) in
if let error = error {
print("Encountered an error while creating an attachment. Error:\(error)")
} else {
print("Created attachment \(response?["id"]) with revision id \(response?["rev"])")
}
}
client.add(operation: putAttachment)
// Read a document
let read = GetDocumentOperation(id: "doc1", databaseName: dbName) { (response, httpInfo, error) in
if let error = error {
print("Encountered an error while reading a document. Error:\(error)")
} else {
print("Read document: \(response)")
}
}
client.add(operation:read)
// Delete a document
let delete = DeleteDocumentOperation(id: "doc1",
revision: "1-revisionidhere",
databaseName: dbName) { (response, httpInfo, error) in
if let error = error {
print("Encountered an error while deleting a document. Error: \(error)")
} else {
print("Document deleted")
}
}
client.add(operation:delete)Currently they are no third party dependencies.
See CONTRIBUTORS.
See CONTRIBUTING.
See LICENSE