Differences between revisions 20 and 21
Revision 20 as of 2016-04-02 04:37:25
Size: 4199
Editor: ?Harsh Daftary
Comment:
Revision 21 as of 2016-08-11 21:51:34
Size: 4252
Editor: ?Louis-PhilippeVeronneau
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:

* '''How do I use deb.li??'''
   The easiest way to use deb.li is to use the following script. Just put it in your `/usr/local/bin`:
   {{{#!bash
#!/bin/sh -e
# call me 'deb.li' and use me as 'deb.li http://some/long/url', stdout is a cut-and-paste friendly URL
hash=$(ssh alioth.debian.org ~bzed/godebian-client/add_url "$@")
echo "http://deb.li/$hash"
}}}
Line 53: Line 62:
   * here is a few-liner helper script to access bzed's alioth check-out via ssh
   {{{#!bash
#!/bin/sh -e
# call me 'deb.li' and use me as 'deb.li http://some/long/url', stdout is a cut-and-paste friendly URL
hash=$(ssh alioth.debian.org ~bzed/godebian-client/add_url "$@")
echo "http://deb.li/$hash"
}}}

deb.li - the Debian ShortURL service

deb.li is a shortURL service for Debian related usage, hosted and developed by BerndZeimetz. The service is also available under the domain go.debian.net. To ensure that deb.li is not used by random spammers, adding new URLs is limited to a json-rpc web-interface for now, which is only accessible from a limited list of IPs.

FAQ

* How do I use deb.li??

  • The easiest way to use deb.li is to use the following script. Just put it in your /usr/local/bin:

    #!/bin/sh -e
    # call me 'deb.li' and use me as 'deb.li http://some/long/url', stdout is a cut-and-paste friendly URL
    hash=$(ssh alioth.debian.org ~bzed/godebian-client/add_url "$@")
    echo "http://deb.li/$hash"
  • Which hosts are allowed to access the json-rpc interface

    • 70.103.162.29 (master.debian.org)
    • 82.195.75.32/28, 82.195.75.64/26, 2001:41B8:202::/48 (Debian networks @ MAN-DA)
    • 192.25.206.16 (merkel.debian.org)
    • 217.196.43.134 (alioth.debian.org)
    • 93.94.130.128/26 (Debian network @ dg-i)
    • 217.196.43.140 (vasks.debian.org)
    • 217.196.43.132 (wagner.debian.org)
    • 192.25.206.57 (samosa.debian.org)
    • 206.12.19.0/24 (Debian network @ UBCECE)
    • 217.196.144.0/20, 2a02:16a8:dc41:100::/56 (Debian networks @ conova)
    • 194.177.211.192/27 (Debian network @ GRNET)
    • 206.12.19.123, 2607:f8f0:610:4000:216:36ff:fe40:3861 (nono.debian.org)
  • I'd like to add new URLs from a different host

  • Is there a character limit for the made-up short URLs?

  • Is it ok to add a huge amount of URLs automatically

    • Basically - yes. But please make sure it doesn't end up in DOSing the service. It is appreciated if you would contact BerndZeimetz (bzed@debian.org) before adding a huge amount of URLs, maybe there is a faster and/or better way than the json-rpc interface.

  • Will there be other ways to add URLs to the service?

    • An email-gateway is planned, but not implemented yet. It will accept gpg-signed control mails, similar to db.debian.org.
  • Is there a bugtracker?

  • Is there a preview page of the short URLs available?

  • Where is the code?

  • Where is the documentation in the code?

    • Not yet written. Patches are welcome!
  • Is there an example JSON-RPC Client?

  • How do I use the example Client?

  • I'd like to use deb.li ShortURLs in my CIA bot messages, is this possible?

    • Yes, sure. have a look at deb.li/ciabot - the ciabot.py script in the example client repository. Please note that the script is a bit customized for alioth, so make sure it works properly for you when you use it somewhere else.

JSON-RPC API documentation

The json-rpc URL is http://deb.li/rpc/json. The following functions are provided:

  • add_url(url)

  • add_static_url(url, key)

  • update_static_url(url, key)

  • get_url(key)

url is the URL which should be shortened and key the key part of the short URL. Please note that the API is not declared as stable yet.