aboutsummaryrefslogtreecommitdiff
path: root/src/ldapsp_realm.erl
blob: f3e283ab1d904e962dde3a15302311f8100f4c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
%%-------------------------------------------------------------------
%% This file is part of ldapsp.
%%
%% Copyright (C) 2016 Guido Günther <agx@sigxcpu.org>
%%
%% ldapsp is free software: you can redistribute it and/or modify
%% it under the terms of the GNU General Public License as published by
%% the Free Software Foundation, either version 3 of the License, or
%% (at your option) any later version.
%%
%% ldapsp is distributed in the hope that it will be useful,
%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
%% GNU General Public License for more details.
%%
%% You should have received a copy of the GNU General Public License
%% along with ldapsp.  If not, see <http://www.gnu.org/licenses/>.
%%-------------------------------------------------------------------
-module(ldapsp_realm).
-export([
	 allowed_methods/2,
	 content_types_provided/2,
	 init/1,
	 process_post/2,
	 routes/0
]).

-include_lib("webmachine/include/webmachine.hrl").

-spec init(list()) -> {ok, term()}.
init([]) ->
    {ok, undefined}.

allowed_methods(RD, Ctx) ->
    {['POST'], RD, Ctx}.

%% @doc Return the routes this module should respond to.
routes() ->
    [{["realm", realm], ?MODULE, []}].


content_types_provided(RD, Ctx) ->
    {[ {"text/html",        unused},
       {"application/json", unused} ],
     RD, Ctx}.

%% /realm/:realm/
-spec process_post(any(), any()) -> no_return().
process_post(RD, Ctx) ->
    Realm = wrq:path_info(realm, RD),

    Params = mochiweb_util:parse_qs(wrq:req_body(RD)),
    ldapsp_log:debug("Params: ~p~n", [Params]),
    Hostname = proplists:get_value("hostname", Params),
    Class = proplists:get_value("userclass", Params),
    Rebuild = proplists:get_value("rebuild", Params, false),
    ldapsp_log:info("Create host: Realm ~p, Hostname ~p, Class: ~p, Rebuild: ~p~n", [Realm, Hostname, Class, Rebuild]),
    Resp = ldapsp_proxy:add_host(Hostname, Class, Realm),
    Json = mochijson2:encode(Resp),
    {true, wrq:set_resp_body(Json, RD), Ctx}.