summaryrefslogtreecommitdiffstats
path: root/_build/static/archives/extend/2013-October/000288.html
blob: 50c515f515cecebe91014750490dfbfc4cf6aa7e (plain) (blame)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
 <HEAD>
   <TITLE> [99s-extend] REST handler failure
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20REST%20handler%20failure&In-Reply-To=%3C0F1D01F5-A4B3-4135-8F4C-FCC2E9F79DFA%40llaisdy.com%3E">
   <META NAME="robots" CONTENT="index,nofollow">
   <style type="text/css">
       pre {
           white-space: pre-wrap;       /* css-2.1, curent FF, Opera, Safari */
           }
   </style>
   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
   <LINK REL="Previous"  HREF="000287.html">
   <LINK REL="Next"  HREF="000289.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[99s-extend] REST handler failure</H1>
    <B>Ivan uemlianin</B> 
    <A HREF="mailto:extend%40lists.ninenines.eu?Subject=Re%3A%20%5B99s-extend%5D%20REST%20handler%20failure&In-Reply-To=%3C0F1D01F5-A4B3-4135-8F4C-FCC2E9F79DFA%40llaisdy.com%3E"
       TITLE="[99s-extend] REST handler failure">ivan at llaisdy.com
       </A><BR>
    <I>Tue Oct 29 22:01:30 CET 2013</I>
    <P><UL>
        <LI>Previous message: <A HREF="000287.html">[99s-extend] REST handler failure
</A></li>
        <LI>Next message: <A HREF="000289.html">[99s-extend] REST handler failure
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#288">[ date ]</a>
              <a href="thread.html#288">[ thread ]</a>
              <a href="subject.html#288">[ subject ]</a>
              <a href="author.html#288">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>Sorry for terse but I only have a phone. Why can't you return a 404 here?  Using something like cowboy:reply(404, ...

Ivan

--
festina lente


On 29 Oct 2013, at 21:25, Daniel Goertzen &lt;<A HREF="https://lists.ninenines.eu/listinfo/extend">daniel.goertzen at gmail.com</A>&gt; wrote:

&gt;<i> My situation is that I have a rest handler that may fail due to invalid url segments.  Example situation:
</I>&gt;<i> 
</I>&gt;<i> 
</I>&gt;<i> init(_Transport, _Req, _Opts) -&gt;
</I>&gt;<i>         {upgrade, protocol, cowboy_rest}.
</I>&gt;<i> 
</I>&gt;<i> content_types_provided(Req, State) -&gt;
</I>&gt;<i>     {[{&lt;&lt;&quot;application/json&quot;&gt;&gt;, get_json}], Req, State}.
</I>&gt;<i> 
</I>&gt;<i> get_json(Req0, State) -&gt;
</I>&gt;<i>     {Params, Req1} = lists:mapfoldl(fun cowboy_req:binding/2, Req0, [param1, param2, param3, ....]),
</I>&gt;<i> 
</I>&gt;<i>     case catch other_module:request(Params) of
</I>&gt;<i>         {'EXIT', {badarg, _}} -&gt;
</I>&gt;<i>             hmmm, Params were bad and I would like to return a 404 code now.
</I>&gt;<i>         Result -&gt;
</I>&gt;<i>             {jiffy:encode(Result), Req1, State}
</I>&gt;<i>     end.
</I>&gt;<i> 
</I>&gt;<i> 
</I>&gt;<i> 
</I>&gt;<i> So I would like to return a 404 code when my underlying request function fails, but it appears my choices are:
</I>&gt;<i> 
</I>&gt;<i> - return a 200 (ok) response with data.
</I>&gt;<i> - crash and cause a 500 (Internal Server Error) response to be returned.  Not exactly the sentiment I want.
</I>&gt;<i> 
</I>&gt;<i> 
</I>&gt;<i> Is there some other way to cause a 404 response?
</I>&gt;<i> 
</I>&gt;<i> I realize I could add path constraint functions, but I will be replicating logic from my underlying request function.  Furthermore, the constraint functions consider parameters in isolation, so that won't work if the validity of parameters is coupled.
</I>&gt;<i> 
</I>&gt;<i> Thanks,
</I>&gt;<i> Dan.
</I>&gt;<i> _______________________________________________
</I>&gt;<i> Extend mailing list
</I>&gt;<i> <A HREF="https://lists.ninenines.eu/listinfo/extend">Extend at lists.ninenines.eu</A>
</I>&gt;<i> <A HREF="http://lists.ninenines.eu:81/listinfo/extend">http://lists.ninenines.eu:81/listinfo/extend</A>
</I>-------------- next part --------------
An HTML attachment was scrubbed...
URL: &lt;<A HREF="http://lists.ninenines.eu/archives/extend/attachments/20131029/3df30c1d/attachment.html">http://lists.ninenines.eu/archives/extend/attachments/20131029/3df30c1d/attachment.html</A>&gt;
</PRE>

<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="000287.html">[99s-extend] REST handler failure
</A></li>
	<LI>Next message: <A HREF="000289.html">[99s-extend] REST handler failure
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#288">[ date ]</a>
              <a href="thread.html#288">[ thread ]</a>
              <a href="subject.html#288">[ subject ]</a>
              <a href="author.html#288">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="https://lists.ninenines.eu/listinfo/extend">More information about the Extend
mailing list</a><br>
</body></html>