Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@covalent/http

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@covalent/http

Teradata UI Platform Http Helper Module

  • 0.6.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
171
increased by11.04%
Maintainers
1
Weekly downloads
 
Created
Source

HttpInterceptorService

API Summary

Methods:

NameTypeDescription
deletefunction(url: string, options: RequestOptionsArgs)Uses underlying ng2 [http] to request a DELETE method to a URL, executing the interceptors as part of the request pipeline.
getfunction(url: string, options: RequestOptionsArgs)Uses underlying ng2 [http] to request a GET method to a URL, executing the interceptors as part of the request pipeline.
headfunction(url: string, options: RequestOptionsArgs)Uses underlying ng2 [http] to request a HEAD method to a URL, executing the interceptors as part of the request pipeline.
patchfunction(url: string, data: any, options: RequestOptionsArgs)Uses underlying ng2 [http] to request a PATCH method to a URL, executing the interceptors as part of the request pipeline.
postfunction(url: string, data: any, options: RequestOptionsArgs)Uses underlying ng2 [http] to request a POST method to a URL, executing the interceptors as part of the request pipeline.
putfunction(url: string, data: any, options: RequestOptionsArgs)Uses underlying ng2 [http] to request a PUT method to a URL, executing the interceptors as part of the request pipeline.
request`function(url: stringRequest, options: RequestOptionsArgs)`

Usage

Service provided with methods that wrap the ng2 [Http] service and provide an easier experience for interceptor implementation.

To add a desired interceptor, it needs to implement the [IHttpInterceptor] interface.

export interface IHttpInterceptor {
  onRequest?: (requestOptions: RequestOptionsArgs) => RequestOptionsArgs;
  onResponse?: (response: Response) => Response;
  onResponseError?: (error: Response) => Response;
}

Every method is optional, so you can just implement the ones that are needed.

Example:

import { Injectable } from '@angular/core';
import { IHttpInterceptor } from '@covalent/http';

@Injectable()
export class CustomInterceptor implements IHttpInterceptor {

  onRequest(requestOptions: RequestOptionsArgs): RequestOptionsArgs {
    ... // do something to requestOptions
    return requestOptions;
  }

  onResponse(response: Response): Response {
    ... // check response status and do something
    return response;
  }

  onResponseError(error: Response): Response {
    ... // check error status and do something
    return error;
  }
}

Also, you need to bootstrap the interceptor providers

import { HTTP_PROVIDERS } from '@angular/http';
import { provideInterceptors } from '@covalent/http';
import { CustomInterceptor } from 'dir/to/interceptor';

bootstrap(AppComponent, [
  HTTP_PROVIDERS,
  provideInterceptors([CustomInterceptor]),
]);

After that, just inject [HttpInterceptorService] and use it for your requests.

RESTService

API Summary

Methods:

NameTypeDescription
queryfunction(query?: IRestQuery)Creates a GET request to the generated endpoint URL.
get`function(id: stringnumber)`
createfunction(obj: T)Creates a POST request to the generated endpoint URL.
update`function(id: stringnumber, obj: T)`
delete`function(id: stringnumber)`
buildUrl`function(id?: stringnumber, query?: IRestQuery)`

Usage

Abstract class provided with methods that wraps http services to facilitate REST API calls.

Example:

import { Injectable } from '@angular/core';
import { Response, Http } from '@angular/http';
import { RESTService, HttpInterceptorService } from '@covalent/http';

@Injectable()
export class CustomRESTService extends RESTService<any> {

  constructor(private _http: Http /* or HttpInterceptorService */) {
    super(_http, {
      baseUrl: 'www.api.com',
      path: '/path/to/endpoint',
      transform: (res: Response): any => res.json(),
    });
  }
}

Note: the constructor takes any object that implements the methods in [IHttp] interface. This can be the ng2 [Http] service, the covalent [HttpInterceptorService] or a custom service.

export interface IHttp {
  delete: (url: string, options?: RequestOptionsArgs) => Observable<Response>;
  get: (url: string, options?: RequestOptionsArgs) => Observable<Response>;
  head: (url: string, options?: RequestOptionsArgs) => Observable<Response>;
  patch: (url: string, body: any, options?: RequestOptionsArgs) => Observable<Response>;
  post: (url: string, body: any, options?: RequestOptionsArgs) => Observable<Response>;
  put: (url: string, body: any, options?: RequestOptionsArgs) => Observable<Response>;
  request: (url: string | Request, options: RequestOptionsArgs) => Observable<Response>;
}

Keywords

FAQs

Package last updated on 19 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc