I try to adapt etherpad so it is only accessible if certain params are sent with the request. For example I want a certain pad just to be displayed if there is a unique id provided like

http://myetherpad.com/thepadid?myparam=blub

Does anyone know where exactly I can parse the params? I searched all the js-files but didn't find exactly what I am looking for.

I found out that there is some kind of request object. You can access it like

request.params.padId

But I also don't know where to search for the implementation of this object. I hope somebody can help me. Thanks :)

link|improve this question

50% accept rate
feedback

2 Answers

You could probably hack something into the code at https://github.com/ether/pad/blob/master/etherpad/src/etherpad/licensing.js#L153

But if all you need is some kind of password protection, there are easier ways. The easiest would be to use something that is built in to your web server, or to use the built-in pro functionality -- more on that on http://etherpad.org/2010/10/14/241/

(Your idea with using URL-parameters for password could be simplified; just use a complicated pad name and only those with the URL will find it. Having a "nice" pad name and adding a complicated password at the end doesn't protect the pad at all.)

link|improve this answer
I want to pass a unique ID which is valid for a certain time and prevent other people from creating pads. Pads are just created if the user presses a button on my program. Thanks for the advice. Do you know maybe how to extract the params from that function? – aleksv Jun 27 '11 at 19:05
feedback

For anyone with the same problem: You can get the GET-parameters via

request.headers['Referer']

It returns the URI the user called. But I still don't know how to do it properly (or get the POST parameters).

link|improve this answer
request.params.YOURPARAMETER is the answer! – aleksv Sep 20 '11 at 15:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.