summaryrefslogtreecommitdiff
path: root/src/frontend.erl
blob: a8a8b9edb3968d75e7cdf92f77826a7986793d9c (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
%%% Copyright (c) 2014, NORDUnet A/S.
%%% See LICENSE for licensing information.

%%% @doc Frontend node API

-module(frontend).
%% API (URL)
-export([request/3]).

request(post, "ct/frontend/sendentry", Input) ->
    case (catch mochijson2:decode(Input)) of
        {error, E} ->
            html("sendentry: bad input:", E);
        {struct, PropList} ->
            LogEntry = base64:decode(proplists:get_value(<<"entry">>, PropList)),
            TreeLeafHash = base64:decode(proplists:get_value(<<"treeleafhash">>, PropList)),

            ok = db:add(TreeLeafHash, LogEntry),
            success({[{result, <<"ok">>}]})
    end;

request(post, "ct/frontend/sendlog", Input) ->
    case (catch mochijson2:decode(Input)) of
        {error, E} ->
            html("sendentry: bad input:", E);
        {struct, PropList} ->
            Start = proplists:get_value(<<"start">>, PropList),
            Hashes = lists:map(fun (S) -> base64:decode(S) end, proplists:get_value(<<"hashes">>, PropList)),

            Indices = lists:seq(Start, Start + length(Hashes) - 1),
            lists:foreach(fun ({Hash, Index}) ->
                                  ok = db:add_index(Hash, Index)
                          end, lists:zip(Hashes, Indices)),
            success({[{result, <<"ok">>}]})
    end;

request(post, "ct/frontend/sendsth", Input) ->
    case (catch mochijson2:decode(Input)) of
        {error, E} ->
            html("sendentry: bad input:", E);
        {struct, PropList} ->
            Treesize = proplists:get_value(<<"tree_size">>, PropList),

            ok = db:set_treesize(Treesize),

            ht:reset_tree([db:size() - 1]),

            success({[{result, <<"ok">>}]})
    end;

request(get, "ct/frontend/currentposition", _Query) ->
    Size = db:size(),
    success({[{result, <<"ok">>},
              {position, Size}]});

request(get, "ct/frontend/missingentries", _Query) ->
    Size = db:size(),
    Missing = fetchmissingentries(Size),
    success({[{result, <<"ok">>},
              {entries, Missing}]}).

fetchmissingentries(Index) ->
    lists:reverse(fetchmissingentries(Index, [])).

fetchmissingentries(Index, Acc) ->
    case db:leafhash_for_index(Index) of
        noentry ->
            Acc;
        Hash ->
            case db:entry_for_leafhash(Hash) of
                noentry ->
                    fetchmissingentries(Index + 1, [Hash | Acc]);
                _ ->
                    fetchmissingentries(Index + 1, Acc)
            end
    end.


%% Private functions.
html(Text, Input) ->
    {400, [{"Content-Type", "text/html"}],
     io_lib:format(
       "<html><body><p>~n" ++
           "~s~n" ++
           "~p~n" ++
           "</body></html>~n", [Text, Input])}.

success(Data) ->
    {200, [{"Content-Type", "text/json"}], mochijson2:encode(Data)}.