Mercurial > prosody-modules
annotate mod_auth_external_insecure/examples/lua/prosody-auth-example.lua @ 4055:cf1304ad2336
mod_turncredentials/README: Link to eturnal (thanks Holger)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 30 Jun 2020 19:32:39 +0200 |
parents | f84ede3e9e3b |
children |
rev | line source |
---|---|
1164
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
1 local actions = {}; |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
2 |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
3 function actions.auth(data) |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
4 local user, host, pass = data:match("^([^:]+):([^:]+):(.+)$"); |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
5 if user == "someone" then |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
6 return "1"; |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
7 end |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
8 end |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
9 |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
10 for line in io.lines() do |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
11 local action, data = line:match("^([^:]+)(.*)$"); |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
12 print(actions[action] and actions[action](data) or "0"); |
b6280e8886f4
mod_auth_external: Move example scripts to new examples/ dir, and add Lua and Go examples
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
13 end |