summaryrefslogtreecommitdiff
path: root/src/ldapsp_realm_hostname.erl
blob: a28d19df41d4309e103455281c51696318c704dd (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
-module(ldapsp_realm_hostname).
-export([
	 allowed_methods/2,
	 content_types_provided/2,
	 delete_resource/2,
	 init/1,
	 routes/0
]).

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

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

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

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

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

%% /realm/:realm/:hostname 
delete_resource(RD, Ctx) ->
    Realm = wrq:path_info(realm, RD),
    Hostname = wrq:path_info(hostname, RD),
    ldapsp_log:info("Delete host ~p in ~p ~n", [Hostname, Realm]),
    Ret = ldapsp_proxy:del_host(Hostname, Realm),
    {Ret, RD, Ctx}.