forked from bet365/soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_server.erl
141 lines (127 loc) · 5.62 KB
/
example_server.erl
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
%%
%% %CopyrightBegin%
%%
%% Copyright Hillside Technology Ltd. 2016. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%
%% %CopyrightEnd%
%%
%% Note: this file was generated from "example.wsdl" using soap:wsdl2erlang,
%% but a number of callback functions have been added.
%% See "soap_server_tutorial.md" for more explanations.
%% generated by soap from: e:/e_soap/soap/doc/example.wsdl
%% for service "contacts_service" and port "contacts_port"
%% using options: [{service,"contacts_service"},{port,"contacts_port"},{generate,both},{namespaces,[{"http://example.com/contacts.xsd",undefined}]},{http_server,soap_server_cowboy_1},{server_name,"example_server"},{http_client,soap_client_ibrowse},{client_name,"example_client"},{strict,true}]
-module(example_server).
-include("example.hrl").
-export([store/3]).
-export([retrieve/3]).
-export([interface/0]).
-export([exception/7]).
-export([init/2]).
-export([header_parser/3]).
-export([header/3]).
-export([check_http_conformance/2]).
-export([protocol_error/3]).
-spec header(Parsed_header::any(), soap:soap_req(), soap:soap_handler_state())
-> {ok, soap:soap_req(), soap:soap_handler_state()}.
header(#'DebuggingHeader'{debugLevel = Level}, Soap_req, State) ->
{ok, Soap_req, [{debug_level, Level} | State]};
header(#{"credentials" := Credentials}, Soap_req, State) ->
Authorised = case Credentials of
#{"username" := <<"Willem">>, "password" := <<"secret">>} ->
true;
_ ->
false
end,
{ok, Soap_req, [{authorised, Authorised} | State]}.
-spec header_parser(Namespace::string(), soap:soap_req(),
soap:soap_handler_state())
-> {ok, {fun((Event::erlsom:sax_event(), State::any()) -> any()),
any()}, soap:soap_req(), soap:soap_handler_state()}.
header_parser("http://example.com/contacts.xsd", Soap_req, S) ->
{ok, soap_parsers:data_mapper(soap_interface:model(interface())), Soap_req, S};
header_parser("security", Soap_req, S) ->
{ok, soap_parsers:map(), Soap_req, S}.
%%
%% Ensures that the ETS table exists, and links it to the process that
%% started the server (because otherwise it will disappear between requests).
-spec init(soap:soap_req(), Options::any()) ->
{soap:soap_req(), soap:soap_handler_state()}.
init(Soap_req, [Pid]) ->
case ets:info(contacts) of
undefined ->
ets:new(contacts, [set, named_table, {keypos, #contact.id},
{heir, Pid, []}, public]);
_ ->
ok
end,
{Soap_req, []}.
-spec exception(Class::atom(), Reason::any(), Stacktrace::any(),
soap:soap_fault_code(), Description::string(), soap:soap_req(),
soap:soap_handler_state()) -> soap:soap_handler_response(any()).
exception(Class, Reason, Stacktrace, _Type, _Desc, Soap_req, Handler_state) ->
Message = io_lib:format("exception, class: ~p, reason: ~p,~nstack: ~P~n",
[Class, Reason, Stacktrace, 14]),
{fault, soap_fault:fault(server, Message, Soap_req), Soap_req, Handler_state}.
-spec store(Parsed_body::contact(),
Soap_req::soap:soap_req(), State::soap:soap_handler_state())
-> soap:soap_handler_response(id()).
store(Parsed_body, Soap_req, State) ->
Id = ets:info(contacts, size) + 1,
true = ets:insert(contacts, Parsed_body#contact{id = Id}),
%% Demonstrate how a Header block can be returned:
Header = <<"<h:result xmlns:h=\"test\">ok</h:result>">>,
{ok, #id{id=Id}, [Header], Soap_req, State}.
-spec retrieve(Parsed_body::id(),
Soap_req::soap:soap_req(), State::soap:soap_handler_state())
-> soap:soap_handler_response(contact()).
retrieve(#id{id=Id}, Soap_req, State) ->
case proplists:get_value(debug_level, State, 0) of
1 ->
io:format("retrieving contact ~p~n", [Id]);
_ ->
ok
end,
case proplists:get_value(authorised, State, false) of
true ->
[Contact] = ets:lookup(contacts, Id),
{ok, Contact, Soap_req, State};
false ->
Fault = soap_fault:fault(client, "Not autorised", Soap_req),
{fault, Fault, Soap_req, State}
end.
%% Immediately reject requests that use the PUT method with a 405 status code
-spec check_http_conformance(soap:soap_req(), soap:soap_handler_state()) ->
soap:soap_handler_response(any()) |
{continue, soap:soap_req(), soap:soap_handler_state()}.
check_http_conformance(Soap_req, State) ->
case soap_req:method(Soap_req) of
"PUT" ->
{error, 405, Soap_req, State};
_ ->
{continue, Soap_req, State}
end.
%% Do not reject requests if the method is "GET" (by default
%% SOAP 1.1 requests that use GET are rejected).
-spec protocol_error(soap:protocol_error(), soap:soap_req(),
soap:soap_handler_state()) ->
soap:soap_handler_response(any()) |
{continue, soap:soap_req(), soap:soap_handler_state()}.
protocol_error({method_not_allowed, "GET"}, Soap_req, State) ->
{continue, Soap_req, State}.
%% The 'interface()' function is used by the SOAP framework to access information about
%% the WSDL.
interface() ->
?INTERFACE.