ROCloudModel 1.1.4

ROCloudModel 1.1.4

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Dec 2016
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Robin Oster.



  • By
  • Robin Oster

ROCloudModel (beta)

Provides an abstract layer above the CloudKit and simplifies the mapping between CKRecord and Swift Data classes.

Installation

ROCloudModel is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "ROCloudModel"

How to use

Use the ROCloudModel class as base class of your data classes. The mapping of the data is directly done in the getter/setter methods of the defined attribute.

Report

class Report : ROCloudModel {

    required init() {
        super.init()
        self.recordType = "Reports"
        super.initializeRecord()
    }

    convenience init(name:String, title:String) {
        self.init()

        self.name = name
        self.title = title
    }

    var name:String {
        get {
            return self.record?["name"] as? String ?? ""
        }

        set(value) {
            self.record?["name"] = value
        }
    }

    var title:String {
        get {
            return self.record?["title"] as? String ?? ""
        }

        set(value) {
            self.record?["title"] = value
        }
    }
}

Post

class Post : ROCloudModel {

    required init() {
        super.init()
        self.recordType = "Posts"

        super.initializeRecord()
    }

    convenience init(title:String, report:Report? = nil) {
        self.init()

        self.title = title
        self.report = report
    }

    var title:String {
        get {
            return self.record?["title"] as? String ?? ""
        }

        set(value) {
            self.record?["title"] = value
        }
    }

    var report:Report? {
        get {
            return fetchReferenceSynchronous("report")
        }

        set(value) {
            self.setReferenceValue("report", value: value)
        }
    }

    // Asynch Reference
    func report(callback:(report:Report) -> ()) {
        fetchReference("report") { (report:Report) -> () in
            callback(report:report)
        }
    }

    // Asynch Reference List
    func reports(callback:(reports:Array<Report>) -> ()) {
        fetchReferenceArray("reports") { (reports:Array<Report>) -> () in
            callback(reports:reports)
        }
    }
}

To Fetch the data via Webservice

var postWebservice = ROCloudBaseWebservice<Post>()

self.postWebservice.load { (data) -> () in
    for post in data {
        SynchronizedLogger.sharedInstance.log("\(post.report?.title)")
        SynchronizedLogger.sharedInstance.log("\(post.title)")
    }
}

License

The MIT License (MIT)

Copyright (c) 2016 Robin Oster (http://prine.ch)

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Author

Robin Oster, [email protected]