@capawesome/cli
Version:
The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.
95 lines (94 loc) • 4.14 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const http_client_1 = __importDefault(require("../utils/http-client"));
const authorization_service_1 = __importDefault(require("./authorization-service"));
class AppChannelsServiceImpl {
constructor(httpClient) {
this.httpClient = httpClient;
}
create(dto) {
return __awaiter(this, void 0, void 0, function* () {
const response = yield this.httpClient.post(`/v1/apps/${dto.appId}/channels`, dto, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
});
return response.data;
});
}
delete(data) {
return __awaiter(this, void 0, void 0, function* () {
if (data.id) {
yield this.httpClient.delete(`/v1/apps/${data.appId}/channels/${data.id}`, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
});
}
else if (data.name) {
yield this.httpClient.delete(`/v1/apps/${data.appId}/channels`, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
params: {
name: data.name,
},
});
}
});
}
findAll(dto) {
return __awaiter(this, void 0, void 0, function* () {
const queryParams = new URLSearchParams();
if (dto.limit) {
queryParams.append('limit', dto.limit.toString());
}
if (dto.name) {
queryParams.append('name', dto.name);
}
if (dto.offset) {
queryParams.append('offset', dto.offset.toString());
}
const response = yield this.httpClient.get(`/v1/apps/${dto.appId}/channels?${queryParams}`, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
});
return response.data;
});
}
findOneById(data) {
return __awaiter(this, void 0, void 0, function* () {
const response = yield this.httpClient.get(`/v1/apps/${data.appId}/channels/${data.id}`, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
});
return response.data;
});
}
update(dto) {
return __awaiter(this, void 0, void 0, function* () {
const response = yield this.httpClient.patch(`/v1/apps/${dto.appId}/channels/${dto.appChannelId}`, dto, {
headers: {
Authorization: `Bearer ${authorization_service_1.default.getCurrentAuthorizationToken()}`,
},
});
return response.data;
});
}
}
const appChannelsService = new AppChannelsServiceImpl(http_client_1.default);
exports.default = appChannelsService;