justin / webmachine (http://blog.therestfulway.com/)
A REST-based system for building web applications.
Clone this repository (size: 2.6 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/justin/webmachine/
| commit 113: | 0b8aac8fa334 |
| parent 112: | 9957a15e5779 |
| branch: | default |
| tags: | tip |
some webmachine_util tests
3 months ago
| r113:0b8aac8fa334 | 157 loc | 4.8 KB | embed / history / annotate / raw / |
|---|
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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | %% @author Bryan Fink <bryan@basho.com>
%% @author Andy Gross <andy@basho.com>
%% @author Justin Sheehy <justin@basho.com>
%% @copyright 2008-2009 Basho Technologies, Inc.
-module(demo_fs_resource).
-export([init/1]).
-export([allowed_methods/2,
resource_exists/2,
last_modified/2,
content_types_provided/2,
content_types_accepted/2,
delete_resource/2,
post_is_create/2,
create_path/2,
provide_content/2,
accept_content/2,
generate_etag/2]).
-record(context, {root,response_body=undefined,metadata=[]}).
-include_lib("kernel/include/file.hrl").
-include_lib("webmachine/include/webmachine.hrl").
init(ConfigProps) ->
{root, Root} = proplists:lookup(root, ConfigProps),
{ok, #context{root=Root}}.
allowed_methods(ReqData, Context) ->
{['HEAD', 'GET', 'PUT', 'DELETE', 'POST'], ReqData, Context}.
file_path(Context, Name) ->
RelName = case hd(Name) of
"/" -> tl(Name);
_ -> Name
end,
filename:join([Context#context.root, RelName]).
file_exists(Context, Name) ->
NamePath = file_path(Context, Name),
case filelib:is_regular(NamePath) of
true ->
{true, NamePath};
false ->
false
end.
resource_exists(ReqData, Context) ->
Path = wrq:disp_path(ReqData),
case file_exists(Context, Path) of
{true, _} ->
{true, ReqData, Context};
_ ->
case Path of
"p" -> {true, ReqData, Context};
_ -> {false, ReqData, Context}
end
end.
maybe_fetch_object(Context, Path) ->
% if returns {true, NewContext} then NewContext has response_body
case Context#context.response_body of
undefined ->
case file_exists(Context, Path) of
{true, FullPath} ->
{ok, Value} = file:read_file(FullPath),
{true, Context#context{response_body=Value}};
false ->
{false, Context}
end;
_Body ->
{true, Context}
end.
content_types_provided(ReqData, Context) ->
CT = webmachine_util:guess_mime(wrq:disp_path(ReqData)),
{[{CT, provide_content}], ReqData,
Context#context{metadata=[{'content-type', CT}|Context#context.metadata]}}.
content_types_accepted(ReqData, Context) ->
CT = case wrq:get_req_header("content-type", ReqData) of
undefined -> "application/octet-stream";
X -> X
end,
{MT, _Params} = webmachine_util:media_type_to_detail(CT),
{[{MT, accept_content}], ReqData,
Context#context{metadata=[{'content-type', MT}|Context#context.metadata]}}.
accept_content(ReqData, Context) ->
Path = wrq:disp_path(ReqData),
FP = file_path(Context, Path),
ok = filelib:ensure_dir(filename:dirname(FP)),
ReqData1 = case file_exists(Context, Path) of
{true, _} ->
ReqData;
_ ->
LOC = "http://" ++
wrq:get_req_header("host", ReqData) ++
"/fs/" ++ Path,
wrq:set_resp_header("Location", LOC, ReqData)
end,
Value = wrq:req_body(ReqData1),
case file:write_file(FP, Value) of
ok ->
{true, wrq:set_resp_body(Value, ReqData1), Context};
Err ->
{{error, Err}, ReqData1, Context}
end.
post_is_create(ReqData, Context) ->
{true, ReqData, Context}.
create_path(ReqData, Context) ->
case wrq:get_req_header("slug", ReqData) of
undefined -> {undefined, ReqData, Context};
Slug ->
case file_exists(Context, Slug) of
{true, _} -> {undefined, ReqData, Context};
_ -> {Slug, ReqData, Context}
end
end.
delete_resource(ReqData, Context) ->
case file:delete(file_path(
Context, wrq:disp_path(ReqData))) of
ok -> {true, ReqData, Context};
_ -> {false, ReqData, Context}
end.
provide_content(ReqData, Context) ->
case maybe_fetch_object(Context, wrq:disp_path(ReqData)) of
{true, NewContext} ->
Body = NewContext#context.response_body,
{Body, ReqData, Context};
{false, NewContext} ->
{error, ReqData, NewContext}
end.
last_modified(ReqData, Context) ->
{true, FullPath} = file_exists(Context,
wrq:disp_path(ReqData)),
LMod = filelib:last_modified(FullPath),
{LMod, ReqData, Context#context{metadata=[{'last-modified',
httpd_util:rfc1123_date(LMod)}|Context#context.metadata]}}.
hash_body(Body) -> mochihex:to_hex(binary_to_list(crypto:sha(Body))).
generate_etag(ReqData, Context) ->
case maybe_fetch_object(Context, wrq:disp_path(ReqData)) of
{true, BodyContext} ->
ETag = hash_body(BodyContext#context.response_body),
{ETag, ReqData,
BodyContext#context{metadata=[{etag,ETag}|
BodyContext#context.metadata]}};
_ ->
{undefined, ReqData, Context}
end.
|
