Skip to content

Commit b393f7b

Browse files
committed
Change prettier, gh-pages
1 parent a7f72ff commit b393f7b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4129
-4146
lines changed

.eslintrc.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
const fs = require('fs');
2+
const path = require('path');
3+
4+
const prettierOptions = JSON.parse(
5+
fs.readFileSync(path.resolve(__dirname, '.prettierrc'), 'utf8')
6+
);
7+
8+
module.exports = {
9+
env: {
10+
es2021: true,
11+
node: true,
12+
},
13+
extends: [
14+
'eslint:recommended',
15+
'plugin:@typescript-eslint/recommended',
16+
'plugin:prettier/recommended',
17+
],
18+
parser: '@typescript-eslint/parser',
19+
parserOptions: {
20+
ecmaVersion: 12,
21+
sourceType: 'module',
22+
},
23+
plugins: ['@typescript-eslint', 'prettier', 'eslint-plugin-tsdoc'],
24+
ignorePatterns: ['dist', '.eslintrc.js'],
25+
rules: {
26+
'prettier/prettier': ['error', prettierOptions],
27+
'tsdoc/syntax': 'warn',
28+
},
29+
overrides: [
30+
{
31+
files: ['**/*.ts'],
32+
rules: { 'prettier/prettier': ['error', prettierOptions] },
33+
},
34+
],
35+
};

.eslintrc.json

-21
This file was deleted.

.github/workflows/node-publish.yml

-30
This file was deleted.

.github/workflows/workflow.yml.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Node.js Package
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- next
8+
9+
jobs:
10+
release:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: 14
19+
- name: Install dependencies
20+
uses: bahmutov/npm-install@v1
21+
- name: Build
22+
run: yarn build
23+
- name: Publish Package
24+
env:
25+
GITHUB_NPM_CONFIG_REGISTRY: 'https://npm.pkg.github.com/'
26+
NPM_NPM_CONFIG_REGISTRY: 'https://registry.npmjs.org/'
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
GITHUB_NPM_TOKEN: ${{ secrets.NPM_GITHUB_TOKEN }}
29+
NPM_NPM_TOKEN: ${{ secrets.NPM_NPM_TOKEN }}
30+
run: npx semantic-release
31+
- name: BuildDocs
32+
if: contains(github.base_ref, 'master')
33+
run: docs:build
34+
- name: Deploy Docs
35+
if: contains(github.base_ref, 'master')
36+
uses: JamesIves/[email protected]
37+
with:
38+
branch: gh-pages
39+
folder: docs

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"singleQuote": true,
3+
"tabWidth": 2,
4+
"quoteProps": "consistent",
5+
"arrowParens": "always",
6+
"trailingComma": "none"
7+
}

.prettierrc.json

-7
This file was deleted.

package.json

+57-57
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
11
{
2-
"name": "@linux123123/jspteroapi",
3-
"version": "0.0.0",
4-
"description": "A pterodactyl v1 api using node-fetch",
5-
"main": "dist/index.js",
6-
"types": "dist/index.d.ts",
7-
"scripts": {
8-
"test": "tsc-watch --onCompilationComplete \"node dist/test.js\"",
9-
"build": "rimraf dist/* && tsc",
10-
"build:publish": "yarn build && rimraf src/",
11-
"lint": "eslint \"src/**\"",
12-
"docs:build": "typedoc --categorizeByGroup --defaultCategory Types --excludeInternal --name JSPteroAPI",
13-
"semantic-release": "semantic-release"
14-
},
15-
"repository": {
16-
"type": "git",
17-
"url": "https://github.com/Linux123123/JSPteroAPI.git"
18-
},
19-
"keywords": [
20-
"Pterodactyl",
21-
"API",
22-
"node-fetch",
23-
"node-js",
24-
"js",
25-
"ptero-api",
26-
"ptero",
27-
"pterodactyl-api",
28-
"API client"
29-
],
30-
"author": "Linux123123",
31-
"license": "MIT",
32-
"bugs": {
33-
"url": "https://github.com/Linux123123/JSPteroAPI/issues"
34-
},
35-
"homepage": "https://github.com/Linux123123/JSPteroAPI#readme",
36-
"dependencies": {
37-
"node-fetch": "2.6.2",
38-
"sockette": "^2.0.6",
39-
"ws": "^8.2.2"
40-
},
41-
"devDependencies": {
42-
"@amanda-mitchell/semantic-release-npm-multiple": "^2.14.0",
43-
"@microsoft/tsdoc-config": "^0.15.2",
44-
"@types/node": "^16.9.2",
45-
"@types/node-fetch": "2.5.12",
46-
"@typescript-eslint/eslint-plugin": "^4.31.1",
47-
"@typescript-eslint/parser": "^4.31.1",
48-
"eslint": "^7.32.0",
49-
"eslint-config-prettier": "^8.3.0",
50-
"eslint-plugin-prettier": "^3.4.1",
51-
"eslint-plugin-tsdoc": "^0.2.14",
52-
"prettier": "^2.4.1",
53-
"rimraf": "^3.0.2",
54-
"semantic-release": "^17.4.7",
55-
"tsc-watch": "^4.5.0",
56-
"typedoc": "^0.21.9",
57-
"typescript": "^4.4.3"
58-
}
2+
"name": "@linux123123/jspteroapi",
3+
"version": "0.0.0",
4+
"description": "A pterodactyl v1 api using node-fetch",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
7+
"scripts": {
8+
"dev": "tsc-watch --onCompilationComplete \"node dist/test.js\"",
9+
"build": "rimraf dist/* && tsc",
10+
"build:publish": "yarn build && rimraf src/",
11+
"lint": "eslint \"src/**\"",
12+
"docs:build": "typedoc --categorizeByGroup --defaultCategory Types --excludeInternal --name JSPteroAPI",
13+
"semantic-release": "semantic-release"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/Linux123123/JSPteroAPI.git"
18+
},
19+
"keywords": [
20+
"Pterodactyl",
21+
"API",
22+
"node-fetch",
23+
"node-js",
24+
"js",
25+
"ptero-api",
26+
"ptero",
27+
"pterodactyl-api",
28+
"API client"
29+
],
30+
"author": "Linux123123",
31+
"license": "MIT",
32+
"bugs": {
33+
"url": "https://github.com/Linux123123/JSPteroAPI/issues"
34+
},
35+
"homepage": "https://github.com/Linux123123/JSPteroAPI#readme",
36+
"dependencies": {
37+
"node-fetch": "2.6.2",
38+
"sockette": "^2.0.6",
39+
"ws": "^8.2.2"
40+
},
41+
"devDependencies": {
42+
"@amanda-mitchell/semantic-release-npm-multiple": "^2.14.0",
43+
"@microsoft/tsdoc-config": "^0.15.2",
44+
"@types/node": "^16.9.2",
45+
"@types/node-fetch": "2.5.12",
46+
"@typescript-eslint/eslint-plugin": "^4.31.1",
47+
"@typescript-eslint/parser": "^4.31.1",
48+
"eslint": "^7.32.0",
49+
"eslint-config-prettier": "^8.3.0",
50+
"eslint-plugin-prettier": "^3.4.1",
51+
"eslint-plugin-tsdoc": "^0.2.14",
52+
"prettier": "^2.4.1",
53+
"rimraf": "^3.0.2",
54+
"semantic-release": "^17.4.7",
55+
"tsc-watch": "^4.5.0",
56+
"typedoc": "^0.21.9",
57+
"typescript": "^4.4.3"
58+
}
5959
}

src/application/ApplicationRequest.ts

+49-49
Original file line numberDiff line numberDiff line change
@@ -2,53 +2,53 @@ import fetch, { RequestInit } from 'node-fetch';
22
import { JSPteroAPIError, pterodactylError } from '../modules/Error';
33

44
export class Request {
5-
constructor(
6-
private readonly host: string,
7-
private readonly key: string,
8-
private readonly errorHandler: (error: JSPteroAPIError) => void,
9-
) {}
10-
/**
11-
* @param requestType - The type of request to use e. g. GET, POST
12-
* @param data - Data to send
13-
* @param dataObj - Data object to return / Text to give on success
14-
* @param endpoint - Endpoint for server to call
15-
*/
16-
public async request(
17-
requestType: 'GET' | 'POST' | 'DELETE' | 'PATCH' | 'PUT',
18-
data: Record<string, unknown> | null,
19-
dataObj: string,
20-
endpoint: string,
21-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
22-
): Promise<any> {
23-
const URL = this.host + endpoint;
24-
const options: RequestInit = {
25-
method: requestType,
26-
headers: {
27-
'responseEncoding': 'utf8',
28-
'Authorization': 'Bearer ' + this.key,
29-
'Content-Type': 'application/json',
30-
'Accept': 'application/vnd.pterodactyl.v1+json',
31-
},
32-
};
33-
if (data) options.body = JSON.stringify(data);
34-
const rawData = await fetch(URL, options);
35-
if (!rawData.ok)
36-
return this.errorHandler(
37-
new JSPteroAPIError(
38-
rawData,
39-
(await rawData.json()) as pterodactylError,
40-
data,
41-
requestType,
42-
),
43-
);
44-
if (rawData.status == 204) return dataObj;
45-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
46-
let res = (await rawData.json()) as any;
47-
if (!dataObj) return res;
48-
const objArr = dataObj.split('.');
49-
objArr.forEach((obj) => {
50-
res = res[obj];
51-
});
52-
return res;
53-
}
5+
constructor(
6+
private readonly host: string,
7+
private readonly key: string,
8+
private readonly errorHandler: (error: JSPteroAPIError) => void
9+
) {}
10+
/**
11+
* @param requestType - The type of request to use e. g. GET, POST
12+
* @param data - Data to send
13+
* @param dataObj - Data object to return / Text to give on success
14+
* @param endpoint - Endpoint for server to call
15+
*/
16+
public async request(
17+
requestType: 'GET' | 'POST' | 'DELETE' | 'PATCH' | 'PUT',
18+
data: Record<string, unknown> | null,
19+
dataObj: string,
20+
endpoint: string
21+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
22+
): Promise<any> {
23+
const URL = this.host + endpoint;
24+
const options: RequestInit = {
25+
method: requestType,
26+
headers: {
27+
'responseEncoding': 'utf8',
28+
'Authorization': 'Bearer ' + this.key,
29+
'Content-Type': 'application/json',
30+
'Accept': 'application/vnd.pterodactyl.v1+json'
31+
}
32+
};
33+
if (data) options.body = JSON.stringify(data);
34+
const rawData = await fetch(URL, options);
35+
if (!rawData.ok)
36+
return this.errorHandler(
37+
new JSPteroAPIError(
38+
rawData,
39+
(await rawData.json()) as pterodactylError,
40+
data,
41+
requestType
42+
)
43+
);
44+
if (rawData.status == 204) return dataObj;
45+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
46+
let res = (await rawData.json()) as any;
47+
if (!dataObj) return res;
48+
const objArr = dataObj.split('.');
49+
objArr.forEach((obj) => {
50+
res = res[obj];
51+
});
52+
return res;
53+
}
5454
}

0 commit comments

Comments
 (0)