Code Monkey home page Code Monkey logo

vapor-ext's Introduction

Vapor Version MIT License Continuous Integration Swift 4.1

VaporExt

VaporExt is a collection of Swift extensions, with handy methods, syntactic sugar, and performance improvements for wide range of Vapor types and classes.

Requirements:

  • Swift 4.1+

Installation

You can use The Swift Package Manager to install VaporExt by adding the proper description to your Package.swift file:

import PackageDescription

let package = Package(
    name: "YOUR_PROJECT_NAME",
    targets: [],
    dependencies: [
        .package(url: "https://github.com/vapor-community/vapor-ext.git", from: "0.1.0"),
    ]
)

Note that the Swift Package Manager is still in early design and development, for more information checkout its GitHub Page

What is included?

The extensions are grouped in 3 modules, AsyncExt, FluentExt and ServiceExt, and the VaporExt which acts as a helper to export the extensions included in the previous packages.

AsyncExt

  • New Future methods:
    • true(or error:)
    • false(or error:)
    • greater(than value:)
    • greater(than value:, or error:)
    • greaterOrEqual(to value:)
    • greaterOrEqual(to value:, or error:)
    • less(than value:)
    • less(than value:, or error:)
    • lessOrEqual(to value:)
    • lessOrEqual(to value:, or error:)
    • equal(to value:)
    • equal(to value:, or error:)
    • notEqual(to value:)
    • notEqual(to value:, or error:)

FluentExt

  • New Model functions:
    • query(by:, on:, withSoftDeleted:) to create a query for the model and apply a filter of criteria.
    • findAll(sortBy:, on:, withSoftDeleted:) to find all models and apply some sorting criteria.
    • find(by:, sortBy:, on:, withSoftDeleted:) to find models and apply some filters and sorting criteria.
    • findOne(by:, on:, withSoftDeleted:) to find first model that matches the filters criteria.
    • count(on:, withSoftDeleted:) to count the number of registers of the model.
    • count(by:, on:, withSoftDeleted:) to count the number of registers of the model that matches some criteria.
  • New Binary operators:
    • !~= for not has suffix comparison.
    • !=~ for not has prefix comparison.
    • !~~ for not contains comparison.
  • New filter methods:
    • filter(keyPath:, at parameter:, on req:) to handle automatic filters based in query params.
  • New sort methods:
    • sort(keyPath:, at queryParam:, as parameter:, default direction:, on req:) to handle automatic sorting based in query params.
    • sort(keyPath:, as parameter:, default direction:, on req:) to handle automatic sorting based in query params.
    • sort(by:) to apply some sorting criteria.
  • New Request extensions to build FilterOperator and QuerySort from query params (Usefull if you use a Repository system):
    • filter(keyPath:, at parameter:) to build FilterOperator based in query params.
    • sort(keyPath:, at queryParam:, as parameter:) to build QuerySort based in query params.
    • sort(keyPath:, at queryParam:, as parameter:, default direction:) to build QuerySort based in query params.
    • sort(keyPath:, as parameter:) to build QuerySort based in query params.
    • sort(keyPath:, as parameter:, default direction:) to build QuerySort based in query params.

Query params syntax for filters:

You can set the filter method with this format parameter=method:value and the new filter method will build the filter based on the method, example:

  • [email protected] or username=eq:[email protected] will use equal comparison.
  • username=neq:[email protected] will use not equal comparison.
  • username=in:[email protected],[email protected] will use in comparison.
  • username=nin:[email protected],[email protected] will use not in comparison.
  • price=gt:3000 will use greater than comparison.
  • price=gte:3000 will use greater than or equal comparison.
  • price=lt:3000 will use less than comparison.
  • price=lte:3000 will use less than or equal comparison.
  • username=sw:example will filter using starts with comparison.
  • username=nsw:example will filter using not starts with comparison.
  • username=ew:domain.com will filter using ends with comparison.
  • username=new:domain.com will filter using not ends with comparison.
  • username=ct:domain.com will filter using contains comparison.
  • username=nct:domain.com will filter using not contains comparison.
return try User.query(on: req)
            .filter(\User.username, at: "username", on: req)
            .filter(\User.enabled, at: "enabled", on: req)
            .filter(\User.createdAt, at: "created_at", on: req)
            .filter(\User.updatedAt, at: "updated_at", on: req)
            .filter(\User.deletedAt, at: "deleted_at", on: req)

Query params syntax for sorting:

You can set the sorts methods with this format sort=field:direction,field:direction and the new sort method will build the query based on that configuration, for example

  • With sort=username:asc,created_at:desc you can get you users sorted by username with ASC direction and firstname in DESC direction
return try User.query(on: req)
            .sort(\User.username, as: "username", on: req)
            .sort(\User.createdAt, as: "created_at", default: .ascending, on: req) // if created_at is not present in the url, then the sort is applied using the default direction

Request extensions example:

func index(_ req: Request) throws -> Future<[User]> {
    let repository = try req.make(UserRepository.self)

    let criteria: [FilterOperator<User.Database, User>] = try [
        req.filter(\User.name, at: "name"),
        req.filter(\User.username, at: "username"),
        req.filter(\User.enabled, at: "enabled")
    ].compactMap { $0 }

    var sort: [User.Database.QuerySort] = try [
        req.sort(\User.name, as: "name"),
        req.sort(\User.username, as: "username"),
        req.sort(\User.createdAt, as: "created_at"),
    ].compactMap { $0 }

    if sort.isEmpty {
        let defaultSort = try req.sort(\User.name, as: "name", default: .ascending)
        sort.append(defaultSort)
    }

    return repository.findBy(criteria: criteria, orderBy: sort, on: req)
}

ServiceExt

  • New Enviroment methods:
    • New method dotenv(filename:) to add .envsupport!
    • New generic get(_ key:) method to get values as Int and Bool
    • New generic get(_ key:, _ fallback:) method to get values as Int and Bool and String, with a fallback values

VaporExt

  • New Future methods:
    • new toResponse(on req:, as status:, contentType:) to transform a Future to a Future

Get involved:

We want your feedback. Please refer to contributing guidelines before participating.

Discord Channel:

It is always nice to talk with other people using VaporExt and exchange experiences, so come join our Discord channel.

Credits

This package is developed and maintained by Gustavo Perdomo with the collaboration of all vapor community.

License

VaporExt is released under an MIT license. See license for more information.

vapor-ext's People

Contributors

0xtim avatar gperdomor avatar joscdk avatar rafiki270 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

vapor-ext's Issues

vapor-ext is dependent on a fork of vapor and not vapor/vapor

Vapor-ext is dependent on the gperdomor fork of vapor. Packages that are dependent on vapor-ext are most likely going to be dependent on other packages that are dependent on the main repository of vapor. This would mean this package is being linked with two different versions of Vapor which might cause some issues.

I found this while fixing issues on my website http://swift-dependency-graph.opticalaberration.com/?package=https://github.com/vapor-community/vapor-ext

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.