Current section
Files
Jump to
Current section
Files
src/controllers/controller_file_id.erl
%% @author Marc Worrell <marc@worrell.nl>
%% @copyright 2014 Marc Worrell
%% @doc Redirect the path associated with the media of a file.
%% Copyright 2014 Marc Worrell
%%
%% 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.
-module(controller_file_id).
-author("Marc Worrell <marc@worrell.nl>").
-export([
service_available/1,
resource_exists/1,
forbidden/1,
previously_existed/1,
moved_temporarily/1,
moved_permanently/1
]).
-include_lib("zotonic_core/include/zotonic.hrl").
service_available(Context) ->
Context1 = z_context:ensure_qs(Context),
z_context:lager_md(Context1),
Id = get_id(Context1),
Medium = m_media:get(Id, Context1),
{true, z_context:set(?MODULE, {Id, Medium}, Context1)}.
resource_exists(Context) ->
case z_context:get(?MODULE, Context) of
{undefined, _Medium} ->
{false, Context};
{_Id, undefined} ->
{false, Context};
{Id, _Medium} ->
{not m_rsc:exists(Id, Context), Context}
end.
previously_existed(Context) ->
case z_context:get(?MODULE, Context) of
{undefined, _M} ->
{false, Context};
{_Id, undefined} ->
{false, Context};
{Id, _M} ->
case m_rsc:exists(Id, Context) of
true ->
{true, Context};
false ->
case m_rsc_gone:is_gone(Id, Context) of
true ->
{true, z_context:set(?MODULE, {Id, gone}, Context)};
false -> {false, Context}
end
end
end.
forbidden(Context) ->
case z_context:get(?MODULE, Context) of
{undefined, _M} ->
{false, Context};
{_Id, undefined} ->
{false, Context};
{Id, _M} ->
{not z_acl:rsc_visible(Id, Context), Context}
end.
moved_temporarily(Context) ->
case z_context:get(?MODULE, Context) of
{Id, gone} ->
case m_rsc_gone:get_new_location(Id, Context) of
undefined -> {false, Context};
Location -> {{true, Location}, Context}
end;
{Id, Medium} ->
case z_context:get(is_permanent, Context, false) of
true -> {false, Context};
false -> do_redirect(Id, Medium, Context)
end
end.
moved_permanently(Context) ->
{Id, Medium} = z_context:get(?MODULE, Context),
case z_context:get(is_permanent, Context, false) of
true -> do_redirect(Id, Medium, Context);
false -> {false, Context}
end.
do_redirect(_Id, undefined, Context) ->
{false, Context};
do_redirect(undefined, _Medium, Context) ->
{false, Context};
do_redirect(_Id, #{ <<"filename">> := Filename }, Context)
when is_binary(Filename), Filename =/= <<>> ->
Dispatch = z_context:get(dispatch, Context, media_inline),
Args = z_context:get_all(Context),
Args1 = case z_context:get(qargs, Context) of
undefined ->
Args;
true ->
z_context:get_q_all(Context) ++ Args;
ArgList when is_list(ArgList) ->
[{K, z_context:get_q(K, Context)} || K <- ArgList ] ++ Args
end,
Args2 = lists:foldl(fun(K, Acc) ->
proplists:delete(K, Acc)
end,
Args1,
[ id, star, ?MODULE | z_dispatcher:dispatcher_args() ]),
Location = z_dispatcher:url_for(Dispatch, [{star, Filename}|Args2], Context),
{{true, z_context:abs_url(Location, Context)}, Context};
do_redirect(_Id, _Medium, Context) ->
{false, Context}.
get_id(Context) ->
case z_context:get(id, Context) of
undefined -> m_rsc:rid(z_context:get_q(<<"id">>, Context), Context);
ArgId -> m_rsc:rid(ArgId, Context)
end.