mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #6063 from overleaf/jk-gitbridge-rate-limit-429
[git-bridge] Pass 429 and message to client GitOrigin-RevId: f751b27efdbad9d775dead2a209fd7468c253ad2
This commit is contained in:
parent
6c62d4c412
commit
57613ba547
1 changed files with 27 additions and 19 deletions
|
@ -220,26 +220,34 @@ public class Oauth2Filter implements Filter {
|
|||
HttpServletResponse response = servletResponse;
|
||||
response.setContentType("text/plain");
|
||||
response.setHeader("WWW-Authenticate", "Basic realm=\"Git Bridge\"");
|
||||
response.setStatus(401);
|
||||
|
||||
PrintWriter w = response.getWriter();
|
||||
w.println(
|
||||
"Please sign in using your email address and Overleaf password."
|
||||
);
|
||||
w.println();
|
||||
w.println(
|
||||
"*Note*: if you sign in to Overleaf using another provider, "
|
||||
+ "such "
|
||||
);
|
||||
w.println(
|
||||
"as Google or Twitter, you need to set a password "
|
||||
+ "on your Overleaf "
|
||||
);
|
||||
w.println(
|
||||
"account first. "
|
||||
+ "Please see https://www.overleaf.com/blog/195 for "
|
||||
);
|
||||
w.println("more information.");
|
||||
if (statusCode == 429) {
|
||||
// Rate limit
|
||||
response.setStatus(429);
|
||||
w.println(
|
||||
"Rate limit exceeded. Please wait and try again later."
|
||||
);
|
||||
} else {
|
||||
response.setStatus(401);
|
||||
w.println(
|
||||
"Please sign in using your email address and Overleaf password."
|
||||
);
|
||||
w.println();
|
||||
w.println(
|
||||
"*Note*: if you sign in to Overleaf using another provider, "
|
||||
+ "such "
|
||||
);
|
||||
w.println(
|
||||
"as Google or Twitter, you need to set a password "
|
||||
+ "on your Overleaf "
|
||||
);
|
||||
w.println(
|
||||
"account first. "
|
||||
+ "Please see https://www.overleaf.com/blog/195 for "
|
||||
);
|
||||
w.println("more information.");
|
||||
}
|
||||
|
||||
w.close();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue