0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-16 05:00:24 +00:00

Add the rate_limited/2 REST callback

This commit is contained in:
Loïc Hoguin 2018-11-04 11:51:35 +01:00
parent bf7ccc8623
commit 8c9ad7bf07
No known key found for this signature in database
GPG key ID: 8A9DF795F6FED764
8 changed files with 597 additions and 190 deletions

View file

@ -0,0 +1,24 @@
%% This module does rate limiting based on the query string value.
-module(rate_limited_h).
-export([init/2]).
-export([rate_limited/2]).
-export([content_types_provided/2]).
-export([get_text_plain/2]).
init(Req, State) ->
{cowboy_rest, Req, State}.
rate_limited(Req=#{qs := <<"false">>}, State) ->
{false, Req, State};
rate_limited(Req=#{qs := <<"true-date">>}, State) ->
{{true, {{2222, 2, 22}, {11, 11, 11}}}, Req, State};
rate_limited(Req=#{qs := <<"true">>}, State) ->
{{true, 3600}, Req, State}.
content_types_provided(Req, State) ->
{[{{<<"text">>, <<"plain">>, []}, get_text_plain}], Req, State}.
get_text_plain(Req, State) ->
{<<"This is REST!">>, Req, State}.