Get the host address programmatically in webnoir

1k views Asked by At

I'm developing a Clojure webnoir app and I need to construct a callback url (for Twitter oauth) that is different in dev-mode than it is in production mode. In dev-mode it needs to be localhost:8080/smth and on production (heroku) obviously something else like http://smooth-lightning-xxxx.herokuapp.com/smth. How do I get the localhost:8080 part programmatically in a defpage?

2

There are 2 answers

0
Michiel Borkent On BEST ANSWER

In the end I solved it using this, inside a defpage, with noir.request required as request:

((:headers (request/ring-request)) "host")
0
Slartibartfast On

I haven't tried it, but I think this should work

(ns your-namespace
  (:require noir.request))

and then in defpage:

(let [server-name (:server-name (noir.request/ring-request))]
    ...)

You can also looke at noir middleware if you need to tweak requests and responses a lot.