Skip to main content

A tight standard for converting json objects to and from URL parameters.

Project description

JSON URLEY: A Tight Standard for Json / URL Parameter Conversion

Json Urley provides a tight standard for converting json objects to and from URL parameters.

Aims:

  • The resulting URLs should be as readable as possible
  • Most cases should not include anything that a user unfamiliar with this library would not expect (as little magic as possible!)
  • It should be possible to convert ANY Json structure - no matter how nested.
  • The process should be reversible.
  • The result should be as compatible with OpenAPI as possible

Rules

  1. The top level element is assumed to be an object: ? => {}
  2. Optional type hints for values can be specified at the end of a key by a ~. Unknown types throw an error. Permitted types are:
    • s => str : ?a~s=b => {"a": "b"}
    • f => float : ?a~f=1 => {"a": 1.0}
    • i => int : ?a~i=1 => {"a": 1}
    • b => bool : ?a~b=1 => {"a": true}, ?a~b=0 => {"a": false},
    • n => null : ?a~n= => {"a": null}, ?a~n=null => {"a": null}
    • a => empty array : ?a~a= => {"a": []}
    • o => empty object : ?a~o= => {"a": {}}
  3. Boolean values for True are true (case insensitive) or 1. Anything else throws an error
  4. Boolean values for False are false (case insensitive) or 0. Anything else throws an error
  5. Null values should be null or an empty string. Anything else throws an error
  6. Values for an empty array or empty object must be an empty string. Anything else throws an error. (These structures may be built out by later keys)
  7. If no type is specified, we try to infer the type with the following precedence:
    • The value null implies the type is null: `?a=null => {"a": null}
    • The value true implies the type is boolean: `?a=true => {"a": true}
    • The value false implies the type is boolean: `?a=false => {"a": false}
    • If the value can be parsed as an integer, it is an integer number: ?a=1 => {"a": 1}
    • If the value can be parsed as a float, it is a floating point number: ?a=1.0 => {"a": 1.0}
    • If the value is NaN, Infinity or -Infinity it is one of these numbers.
    • The value is a string
  8. Duplicate keys mean the presence of an array at the end of the path. This makes the ordering of elements significant!
    • ?a=1&a=2 => {"a": [1, 2]}
    • ?a=1&a~i=2 => {"a": [1, 2]}
    • ?a=1&a~s=2 => {"a": [1, "2"]}
  9. Keys are divided into elements by a . : ?a.b=1&a.c=2 => {"a": {"b": [1, 2]}}
  10. Elements which are not at the end of a path may have a hint indicating that they are an array instead of a key. Arrays may have 2 keys:
    • n : A new element
    • e : The last existing element (creates new if missing) Examples:
    • ?foo=a&foo=b => {"foo": ["a", "b"]}
    • ?foo~a.n=a&foo~a.n=b => {"foo": ["a", "b"]}
    • ?foo~a.n.c=a&foo~a.n.c=b => {"foo": [{"c": "a"}, {"c": "b"}]}
    • ?foo~a.n.c=a&foo.n.c=b => {"foo": [{"c": "a"}, {"c": "b"}]}
    • ?foo~a=&foo.n.c=a&foo.n.c=b => {"foo": [{"c": "a"}, {"c": "b"}]}
    • ?foo~a.n.c=a&foo.e.d=b => {"foo": [{"c": "a", "d": "b"}]}
    • ?foo~a.e.c=a&foo.e.d=b => {"foo": [{"c": "a", "d": "b"}]}
    • ?foo~a.e.c=a&foo.e.c=b => {"foo": [{"c": ["a", "b"]}]}
    • ?foo~a.e~a.e~a.e=1 => {"foo": [[[1]]]}
    • ?foo~a.n~a.n~a.n=1&foo~a.n~a.n~a.n=2&foo~a.e~a.e~a.e=3 => {"foo": [[[1]], [[2,3]]]}
  11. Trying to mix arrays with objects will result in an error:
    • ?a~a=&a.b=1 => ERROR
    • ?a~a=&a.foo=1 => ERROR
  12. Actual ~ or . in keys can be escaped with a preceeding ~:
    • a~~a=1 => {"a~a": 1}
    • a~~~b=1 => {"a~": true}
    • a~~~.b=1 => {"a~.b": 1}

Notes:

How do you verify this thing works?

Test coverage is currently 100% and will be so before any new release

Why the tildas for type hints? (~)

  • Tildas are not valid as part of a URL parameter - they are not encoded with a % and unicode number when you call encodeUriComponent, making them easier to read than alternatives.
  • Tilda is often used to mean approximately, so I thought it was appropriate for type hints.

Why not use one of the existing options?

All existing options I found did not satisfy one or more of the aims outlined at the outset of this readme.

Why don't your array definitions allow specifying lengths, but items must be defined explicitly?

This was decided in order to help prevent denial of service attacks. Can you imagine a situation where a malicious user could command a server to create a data structure to hold trillions of items from the command line? Gross!

Aren't nested arrays still difficult to read?

Yes. Though the spec allows you to define data structures of any complexity, just because you can doesn't mean you should!

Installing local development dependencies

python setup.py install easy_install "json-urley[dev]"

Release Procedure

status

The typical process here is:

  • Create a PR with changes. Merge these to main (The Quality workflows make sure that your PR meets the styling, linting, and code coverage standards).
  • New releases created in github are automatically uploaded to pypi

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

json-urley-1.0.3.tar.gz (6.1 kB view hashes)

Uploaded Source

Built Distribution

json_urley-1.0.3-py3-none-any.whl (6.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page