@map-colonies/mc-utils 1.0.1 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -0
- package/README.md +67 -65
- package/dist/communication/http/httpClient.d.ts +24 -24
- package/dist/communication/http/httpClient.d.ts.map +1 -1
- package/dist/communication/http/httpClient.js +329 -315
- package/dist/communication/http/httpClient.js.map +1 -1
- package/dist/communication/http/index.d.ts +1 -1
- package/dist/communication/http/index.js +13 -13
- package/dist/communication/index.d.ts +1 -1
- package/dist/communication/index.js +13 -13
- package/dist/geo/bboxUtils.d.ts +23 -4
- package/dist/geo/bboxUtils.d.ts.map +1 -1
- package/dist/geo/bboxUtils.js +84 -42
- package/dist/geo/bboxUtils.js.map +1 -1
- package/dist/geo/geoConvertor.d.ts +18 -4
- package/dist/geo/geoConvertor.d.ts.map +1 -1
- package/dist/geo/geoConvertor.js +51 -27
- package/dist/geo/geoConvertor.js.map +1 -1
- package/dist/geo/geoHash.d.ts +24 -6
- package/dist/geo/geoHash.d.ts.map +1 -1
- package/dist/geo/geoHash.js +242 -224
- package/dist/geo/geoHash.js.map +1 -1
- package/dist/geo/index.d.ts +5 -4
- package/dist/geo/index.d.ts.map +1 -1
- package/dist/geo/index.js +17 -16
- package/dist/geo/index.js.map +1 -1
- package/dist/geo/tileRanger.d.ts +40 -0
- package/dist/geo/tileRanger.d.ts.map +1 -0
- package/dist/geo/tileRanger.js +255 -0
- package/dist/geo/tileRanger.js.map +1 -0
- package/dist/geo/tiles.d.ts +32 -2
- package/dist/geo/tiles.d.ts.map +1 -1
- package/dist/geo/tiles.js +65 -14
- package/dist/geo/tiles.js.map +1 -1
- package/dist/geo/tilesGenerator.d.ts +3 -0
- package/dist/geo/tilesGenerator.d.ts.map +1 -0
- package/dist/geo/tilesGenerator.js +95 -0
- package/dist/geo/tilesGenerator.js.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +15 -15
- package/dist/models/enums/geo/index.d.ts +2 -0
- package/dist/models/enums/geo/index.d.ts.map +1 -0
- package/dist/models/enums/geo/index.js +14 -0
- package/dist/models/enums/geo/index.js.map +1 -0
- package/dist/models/enums/geo/tileOrigin.d.ts +8 -0
- package/dist/models/enums/geo/tileOrigin.d.ts.map +1 -0
- package/dist/models/enums/geo/tileOrigin.js +12 -0
- package/dist/models/enums/geo/tileOrigin.js.map +1 -0
- package/dist/models/enums/index.d.ts +2 -0
- package/dist/models/enums/index.d.ts.map +1 -0
- package/dist/models/enums/index.js +14 -0
- package/dist/models/enums/index.js.map +1 -0
- package/dist/models/index.d.ts +2 -1
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/index.js +14 -13
- package/dist/models/index.js.map +1 -1
- package/dist/models/interfaces/geo/iPoint.d.ts +7 -4
- package/dist/models/interfaces/geo/iPoint.d.ts.map +1 -1
- package/dist/models/interfaces/geo/iPoint.js +2 -2
- package/dist/models/interfaces/geo/iTile.d.ts +15 -5
- package/dist/models/interfaces/geo/iTile.d.ts.map +1 -1
- package/dist/models/interfaces/geo/iTile.js +2 -2
- package/dist/models/interfaces/geo/index.d.ts +2 -2
- package/dist/models/interfaces/geo/index.js +14 -14
- package/dist/models/interfaces/iLogger.d.ts +6 -6
- package/dist/models/interfaces/iLogger.js +2 -2
- package/dist/models/interfaces/index.d.ts +2 -2
- package/dist/models/interfaces/index.d.ts.map +1 -1
- package/dist/models/interfaces/index.js +14 -14
- package/dist/models/interfaces/index.js.map +1 -1
- package/package.json +76 -76
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [1.2.0](https://github.com/MapColonies/mc-utils/compare/v1.1.2...v1.2.0) (2021-12-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* support basic auth and external headers ([#7](https://github.com/MapColonies/mc-utils/issues/7)) ([26b0c5d](https://github.com/MapColonies/mc-utils/commit/26b0c5d79ab38c6346de611dd415cf9e64bf1123))
|
|
11
|
+
|
|
12
|
+
### [1.1.2](https://github.com/MapColonies/mc-utils/compare/v1.1.0...v1.1.2) (2021-08-31)
|
|
13
|
+
|
|
14
|
+
### [1.1.1](https://github.com/MapColonies/mc-utils/compare/v1.1.0...v1.1.1) (2021-08-31)
|
|
15
|
+
|
|
16
|
+
## [1.1.0](https://github.com/MapColonies/mc-utils/compare/v1.0.2...v1.1.0) (2021-08-12)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* Tile calculations ([#5](https://github.com/MapColonies/mc-utils/issues/5)) ([ea4c5ac](https://github.com/MapColonies/mc-utils/commit/ea4c5ac0941c7ee3d7c999e4034c0c44339db643))
|
|
22
|
+
|
|
23
|
+
### [1.0.2](https://github.com/MapColonies/mc-utils/compare/v1.0.1...v1.0.2) (2021-08-05)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* prepublish for npm v7 ([#4](https://github.com/MapColonies/mc-utils/issues/4)) ([382bf72](https://github.com/MapColonies/mc-utils/commit/382bf7236622668fd213bfa86911288d33cb24da))
|
|
29
|
+
|
|
30
|
+
### [1.0.1](https://github.com/MapColonies/mc-utils/compare/v1.0.0...v1.0.1) (2021-08-05)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* release command ([#2](https://github.com/MapColonies/mc-utils/issues/2)) ([8bad6a9](https://github.com/MapColonies/mc-utils/commit/8bad6a98de6359aa94ca22723a5ab7968e8b22a1))
|
|
36
|
+
|
|
37
|
+
## 1.0.0 (2021-07-28)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Features
|
|
41
|
+
|
|
42
|
+
* added http client ([#1](https://github.com/MapColonies/mc-utils/issues/1)) ([48ebf45](https://github.com/MapColonies/mc-utils/commit/48ebf45a62f07ae71cb1b23e8a6ad662da56590f))
|
package/README.md
CHANGED
|
@@ -1,65 +1,67 @@
|
|
|
1
|
-
# mc-utils
|
|
2
|
-
this is general utilities for usage in Map Colonies project.
|
|
3
|
-
|
|
4
|
-
# included components
|
|
5
|
-
- [http client](#http-client)
|
|
6
|
-
|
|
7
|
-
# usage
|
|
8
|
-
## http client
|
|
9
|
-
this is abstract base class for sending http request with logging and request retries.
|
|
10
|
-
|
|
11
|
-
this class constructor requires the following parameters:
|
|
12
|
-
- [ILogger](#ilogger) instance.
|
|
13
|
-
- base url to use for all requests.
|
|
14
|
-
- optional name for target service to be used in logs.
|
|
15
|
-
- optional [retry configuration](#ihttpretryconfig).
|
|
16
|
-
|
|
17
|
-
the class have the following protected attributes
|
|
18
|
-
-```axiosOptions``` the options used by axios when sending requests
|
|
19
|
-
|
|
20
|
-
the class have the protected methods for sending http requests:
|
|
21
|
-
- ```protected async get<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>```
|
|
22
|
-
- ```protected async post<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>```
|
|
23
|
-
- ```protected async put<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>```
|
|
24
|
-
- ```protected async delete<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>```
|
|
25
|
-
- ```protected async head<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>```
|
|
26
|
-
- ```protected async options<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>```
|
|
27
|
-
- ```protected async patch<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>```
|
|
28
|
-
|
|
29
|
-
function parameters list:
|
|
30
|
-
- `url`: url path to send the request to (not including the base url).
|
|
31
|
-
- `body`: optional object to be used as request body (in relevant request types).
|
|
32
|
-
- `queryParams`: optional dictionary with query parameters and value.
|
|
33
|
-
- `retryConfig`: optional override to the class retry configuration.
|
|
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
|
-
- ```
|
|
1
|
+
# mc-utils
|
|
2
|
+
this is general utilities for usage in Map Colonies project.
|
|
3
|
+
|
|
4
|
+
# included components
|
|
5
|
+
- [http client](#http-client)
|
|
6
|
+
|
|
7
|
+
# usage
|
|
8
|
+
## http client
|
|
9
|
+
this is abstract base class for sending http request with logging and request retries.
|
|
10
|
+
|
|
11
|
+
this class constructor requires the following parameters:
|
|
12
|
+
- [ILogger](#ilogger) instance.
|
|
13
|
+
- base url to use for all requests.
|
|
14
|
+
- optional name for target service to be used in logs.
|
|
15
|
+
- optional [retry configuration](#ihttpretryconfig).
|
|
16
|
+
|
|
17
|
+
the class have the following protected attributes
|
|
18
|
+
-```axiosOptions``` the options used by axios when sending requests
|
|
19
|
+
|
|
20
|
+
the class have the protected methods for sending http requests:
|
|
21
|
+
- ```protected async get<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>```
|
|
22
|
+
- ```protected async post<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>```
|
|
23
|
+
- ```protected async put<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>```
|
|
24
|
+
- ```protected async delete<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>```
|
|
25
|
+
- ```protected async head<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>```
|
|
26
|
+
- ```protected async options<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>```
|
|
27
|
+
- ```protected async patch<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>```
|
|
28
|
+
|
|
29
|
+
function parameters list:
|
|
30
|
+
- `url`: url path to send the request to (not including the base url).
|
|
31
|
+
- `body`: optional object to be used as request body (in relevant request types).
|
|
32
|
+
- `queryParams`: optional dictionary with query parameters and value.
|
|
33
|
+
- `retryConfig`: optional override to the class retry configuration.
|
|
34
|
+
- `auth`: optional basic authentication object (username, password).
|
|
35
|
+
- `headers`: optional headers to proceed to the request.
|
|
36
|
+
|
|
37
|
+
usage example:
|
|
38
|
+
```typescript
|
|
39
|
+
class myServiceClient extends HttpClient {
|
|
40
|
+
public constructor(logger: ILogger){
|
|
41
|
+
super(logger,'https://myService.com','myService',{
|
|
42
|
+
attempts: 3,
|
|
43
|
+
delay: 'exponential',
|
|
44
|
+
shouldResetTimeout: true
|
|
45
|
+
})
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
public async getName(): string {
|
|
49
|
+
const name = await this.get<string>('api/name',{queryParam1: 'name'});
|
|
50
|
+
return name;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
# models
|
|
55
|
+
## ILogger
|
|
56
|
+
logger interface
|
|
57
|
+
with the flowing log methods
|
|
58
|
+
- ``` error(message:string) ```
|
|
59
|
+
- ```warn(message:string)```
|
|
60
|
+
- ```info(message: string)```
|
|
61
|
+
- ```debug(message: string)```
|
|
62
|
+
|
|
63
|
+
## IHttpRetryConfig
|
|
64
|
+
http requests retry configuration interface with the following attributes:
|
|
65
|
+
- ```attempts``` - the number of request to send until valid response (not 500+ status code). this value must be integer and greater then 0.
|
|
66
|
+
- ```delay``` - the amount of time in ms to wait between attempts (for constant delay) or ```'exponential'``` for exponential backoff.
|
|
67
|
+
- ```shouldResetTimeout``` boolean value to indicate if the request timeout should be for each request (true) or global for all attempts (false)
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { AxiosRequestConfig } from 'axios';
|
|
2
|
-
import { IAxiosRetryConfig } from 'axios-retry';
|
|
3
|
-
import { ILogger } from '../../models/interfaces/iLogger';
|
|
4
|
-
export interface IHttpRetryConfig {
|
|
5
|
-
attempts: number;
|
|
6
|
-
delay: number | 'exponential';
|
|
7
|
-
shouldResetTimeout: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare abstract class HttpClient {
|
|
10
|
-
protected readonly logger: ILogger;
|
|
11
|
-
private readonly targetService;
|
|
12
|
-
protected axiosOptions: AxiosRequestConfig;
|
|
13
|
-
private readonly axiosClient;
|
|
14
|
-
constructor(logger: ILogger, baseUrl: string, targetService?: string, retryConfig?: IHttpRetryConfig);
|
|
15
|
-
protected get<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>;
|
|
16
|
-
protected post<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>;
|
|
17
|
-
protected put<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>;
|
|
18
|
-
protected delete<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>;
|
|
19
|
-
protected head<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>;
|
|
20
|
-
protected options<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>;
|
|
21
|
-
protected patch<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig): Promise<T>;
|
|
22
|
-
private wrapError;
|
|
23
|
-
private parseConfig;
|
|
24
|
-
}
|
|
1
|
+
import { AxiosBasicCredentials, AxiosRequestConfig } from 'axios';
|
|
2
|
+
import { IAxiosRetryConfig } from 'axios-retry';
|
|
3
|
+
import { ILogger } from '../../models/interfaces/iLogger';
|
|
4
|
+
export interface IHttpRetryConfig {
|
|
5
|
+
attempts: number;
|
|
6
|
+
delay: number | 'exponential';
|
|
7
|
+
shouldResetTimeout: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare abstract class HttpClient {
|
|
10
|
+
protected readonly logger: ILogger;
|
|
11
|
+
private readonly targetService;
|
|
12
|
+
protected axiosOptions: AxiosRequestConfig;
|
|
13
|
+
private readonly axiosClient;
|
|
14
|
+
constructor(logger: ILogger, baseUrl: string, targetService?: string, retryConfig?: IHttpRetryConfig);
|
|
15
|
+
protected get<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>;
|
|
16
|
+
protected post<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>;
|
|
17
|
+
protected put<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>;
|
|
18
|
+
protected delete<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>;
|
|
19
|
+
protected head<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>;
|
|
20
|
+
protected options<T>(url: string, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>;
|
|
21
|
+
protected patch<T>(url: string, body?: unknown, queryParams?: Record<string, unknown>, retryConfig?: IAxiosRetryConfig, auth?: AxiosBasicCredentials, headers?: unknown): Promise<T>;
|
|
22
|
+
private wrapError;
|
|
23
|
+
private parseConfig;
|
|
24
|
+
}
|
|
25
25
|
//# sourceMappingURL=httpClient.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"httpClient.d.ts","sourceRoot":"","sources":["../../../src/communication/http/httpClient.ts"],"names":[],"mappings":"AAAA,OAAc,EAA6B,kBAAkB,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"httpClient.d.ts","sourceRoot":"","sources":["../../../src/communication/http/httpClient.ts"],"names":[],"mappings":"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"}
|