ValidateKit is a framework for validating data of model.
- Validation rules:
- Custom rule/throw/value
- Range (n...m, n..., ...m)
- Count (n...m, n..., ...m, min, max, empty)
- Nil
- CharacterSet (alphanumerics, numerics, phone, custom set)
- URL
- Payment card
- Contains
- Operations with rules
- and
&&
- or
||
- not
!
- and
- An open protocol-oriented implementation
- Comprehensive test coverage
- Code documentation
iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
Xcode 10.0+
Swift 4.2+
The example application is the best way to see ValidateKit
in action. Simply open the ValidateKit.xcodeproj
and run the Example
scheme.
ValidateKit is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'ValidateKit'
or
pod 'ValidateKit', :git => 'https://github.com/redwerk/ValidateKit.git', :branch => 'master'
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
To integrate ValidateKit into your Xcode project using Carthage, specify it in your Cartfile
:
github 'redwerk/ValidateKit'
Run carthage update
to build the framework and drag the built ValidateKit.framework
into your Xcode project.
On your application targets’ “Build Phases” settings tab, click the “+” icon and choose “New Run Script Phase” and add the Framework path as mentioned in Carthage Getting started Step 4, 5 and 6
To integrate using Apple's Swift Package Manager, add the following as a dependency to your Package.swift
:
dependencies: [
.package(url: "https://github.com/redwerk/ValidateKit.git", from: "1.0.0")
]
If you prefer not to use any of the aforementioned dependency managers, you can integrate ValidateKit into your project manually. Simply drag the Sources
Folder into your Xcode project.
import Foundation
import ValidateKit
struct User {
var id: Int
var name: String
var email: String?
var age: Int
var about: String
var hobbies: [String] = ["a", "b", "c"]
var phone: String
}
extension User: Validatable {
private static var nameCharacterSet: CharacterSet {
var characterSet = CharacterSet()
characterSet.formUnion(.lowercaseLetters)
characterSet.formUnion(.uppercaseLetters)
return characterSet
}
static func conditions() throws -> Conditions<User> {
var conditions = Conditions(User.self)
conditions.add(\.id, "id", .range(0...100) || .range(10000...))
conditions.add(\.email, "email", .email && !.nil)
conditions.add(\.age, "age", .range(1...))
conditions.add(\.name, "name", .count(3...20) && .characters(nameCharacterSet))
conditions.add(\.about, "description length", .count(30...))
conditions.add(\.hobbies, "hobbies", !.empty)
conditions.add(\.phone, "phone", .phoneCharacters)
return conditions
}
}
// ...
let user = User(...)
do {
try user.validate()
} catch let error {
print(error.localizedDescription)
}
Contributions are very welcome 🙌
ValidateKit
Copyright (c) 2019 Redwerk [email protected]
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.