Giter Site home page Giter Site logo

go-newspeak's Introduction

go-newspeak

A type-safe, injection-free extension to GORM.

War is Peace. Freedom is Slavery. Ignorance is Strength.
โ€”โ€” George Orwell, 1984

Introduction

Newspeak provides a set of type-safe and SQL injection-free API to GORM. Users can construct a SQL-like DSL queries by utlitizing Newspeak's API.

dbb.
    Table(user)
    Select(user.Age, fn.Avg(user.WorkYears)).
    Where(user.Age.Gt(35)).
    Group(user.Age).
    Having(user.Job.Eq("programmer"))
    Order.Desc(user.Age).
    Scan(&result)

The above statement generates equivalent SQL as below.

SELECT user.age, avg(user.work_years)
FROM user
WHERE user.age > 35
GROUP BY user.age
HAVING user.job = "programmer"
ORDER BY user.age DESC

Trivia

The name "Newspeak" is heavily inspired by George Orwell's famous novel, in the sense that, by limiting the API surface, we constrains developers' ability to construct a vulnerable query. In the novel, the language "Newspeak" abolishes the concept of freedom and guarantees unconscious orthodoxy at the level of language and mind.

And the famous quote "War is Peace. Freedom is Slavery. Ignorance is Strength." reflects exactly Newspeak's design principle:

  • War (to fight with migration and code gen) is Peace (of runtime security).
  • Freedom (to write arbitrary SQL) is Slavery (of system vulnerability).
  • Ignorance (of injection caveats) is Strength (of type-safe framework).

go-newspeak's People

Contributors

herringtondarkholme avatar

Watchers

 avatar  avatar

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.