Skip to content

Instantly share code, notes, and snippets.

@FunnyGhost
Last active July 27, 2021 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FunnyGhost/d10e4885983a403caa8b4b1a6d916ded to your computer and use it in GitHub Desktop.
Save FunnyGhost/d10e4885983a403caa8b4b1a6d916ded to your computer and use it in GitHub Desktop.
StatusCodeResponseService
import { Inject, Injectable, Optional } from '@angular/core';
import { RESPONSE } from '@nguniversal/express-engine/tokens';
import { Response } from 'express';
@Injectable()
export class StatusCodeResponseService {
private response: Response;
constructor(
@Optional()
@Inject(RESPONSE)
response: any
) {
this.response = response;
}
/**
* Set a status code on the response for given status code and message.
*
* @param {number} code
* @param {string} message
*/
setStatus(code: number, message?: string) {
if (!this.response) {
return;
}
this.response.statusCode = code;
if (message) {
this.response.statusMessage = message;
}
}
/**
* Set a 404 Not Found status code on the response
*
* @param {string} message
*/
setNotFound(message = 'Not Found') {
if (!this.response) {
return;
}
this.response.statusCode = 404;
this.response.statusMessage = message;
}
setPermanentRedirect(newUrl: string) {
if (!this.response) {
return;
}
this.response.redirect(301, newUrl);
this.response.finished = true;
this.response.end();
}
/**
* Set a 500 Internal Server Error status code on the response
*
* @param {string} message
*/
setInternalServerError(message = 'Internal Server Error') {
if (!this.response) {
return;
}
this.response.statusCode = 500;
this.response.statusMessage = message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment