mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
fix broadcast typo.
This commit is contained in:
parent
35edeb94b2
commit
5527642878
@ -50,9 +50,9 @@ export const RoomApiAxiosParamCreator = function (configuration?: Configuration)
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
boradcastStart: async (broadcastStatus: BroadcastStatus, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
||||
broadcastStart: async (broadcastStatus: BroadcastStatus, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
||||
// verify required parameter 'broadcastStatus' is not null or undefined
|
||||
assertParamExists('boradcastStart', 'broadcastStatus', broadcastStatus)
|
||||
assertParamExists('broadcastStart', 'broadcastStatus', broadcastStatus)
|
||||
const localVarPath = `/api/room/broadcast/start`;
|
||||
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
||||
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
||||
@ -94,7 +94,7 @@ export const RoomApiAxiosParamCreator = function (configuration?: Configuration)
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
boradcastStop: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
||||
broadcastStop: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
||||
const localVarPath = `/api/room/broadcast/stop`;
|
||||
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
||||
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
||||
@ -1146,10 +1146,10 @@ export const RoomApiFp = function(configuration?: Configuration) {
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
async boradcastStart(broadcastStatus: BroadcastStatus, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
||||
const localVarAxiosArgs = await localVarAxiosParamCreator.boradcastStart(broadcastStatus, options);
|
||||
async broadcastStart(broadcastStatus: BroadcastStatus, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
||||
const localVarAxiosArgs = await localVarAxiosParamCreator.broadcastStart(broadcastStatus, options);
|
||||
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
||||
const localVarOperationServerBasePath = operationServerMap['RoomApi.boradcastStart']?.[localVarOperationServerIndex]?.url;
|
||||
const localVarOperationServerBasePath = operationServerMap['RoomApi.broadcastStart']?.[localVarOperationServerIndex]?.url;
|
||||
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
||||
},
|
||||
/**
|
||||
@ -1158,10 +1158,10 @@ export const RoomApiFp = function(configuration?: Configuration) {
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
async boradcastStop(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
||||
const localVarAxiosArgs = await localVarAxiosParamCreator.boradcastStop(options);
|
||||
async broadcastStop(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
||||
const localVarAxiosArgs = await localVarAxiosParamCreator.broadcastStop(options);
|
||||
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
||||
const localVarOperationServerBasePath = operationServerMap['RoomApi.boradcastStop']?.[localVarOperationServerIndex]?.url;
|
||||
const localVarOperationServerBasePath = operationServerMap['RoomApi.broadcastStop']?.[localVarOperationServerIndex]?.url;
|
||||
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
||||
},
|
||||
/**
|
||||
@ -1479,8 +1479,8 @@ export const RoomApiFactory = function (configuration?: Configuration, basePath?
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
boradcastStart(broadcastStatus: BroadcastStatus, options?: any): AxiosPromise<void> {
|
||||
return localVarFp.boradcastStart(broadcastStatus, options).then((request) => request(axios, basePath));
|
||||
broadcastStart(broadcastStatus: BroadcastStatus, options?: any): AxiosPromise<void> {
|
||||
return localVarFp.broadcastStart(broadcastStatus, options).then((request) => request(axios, basePath));
|
||||
},
|
||||
/**
|
||||
*
|
||||
@ -1488,8 +1488,8 @@ export const RoomApiFactory = function (configuration?: Configuration, basePath?
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
boradcastStop(options?: any): AxiosPromise<void> {
|
||||
return localVarFp.boradcastStop(options).then((request) => request(axios, basePath));
|
||||
broadcastStop(options?: any): AxiosPromise<void> {
|
||||
return localVarFp.broadcastStop(options).then((request) => request(axios, basePath));
|
||||
},
|
||||
/**
|
||||
*
|
||||
@ -1735,8 +1735,8 @@ export class RoomApi extends BaseAPI {
|
||||
* @throws {RequiredError}
|
||||
* @memberof RoomApi
|
||||
*/
|
||||
public boradcastStart(broadcastStatus: BroadcastStatus, options?: RawAxiosRequestConfig) {
|
||||
return RoomApiFp(this.configuration).boradcastStart(broadcastStatus, options).then((request) => request(this.axios, this.basePath));
|
||||
public broadcastStart(broadcastStatus: BroadcastStatus, options?: RawAxiosRequestConfig) {
|
||||
return RoomApiFp(this.configuration).broadcastStart(broadcastStatus, options).then((request) => request(this.axios, this.basePath));
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1746,8 +1746,8 @@ export class RoomApi extends BaseAPI {
|
||||
* @throws {RequiredError}
|
||||
* @memberof RoomApi
|
||||
*/
|
||||
public boradcastStop(options?: RawAxiosRequestConfig) {
|
||||
return RoomApiFp(this.configuration).boradcastStop(options).then((request) => request(this.axios, this.basePath));
|
||||
public broadcastStop(options?: RawAxiosRequestConfig) {
|
||||
return RoomApiFp(this.configuration).broadcastStop(options).then((request) => request(this.axios, this.basePath));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -136,7 +136,7 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
|
||||
|
||||
this._state.screen.configurations = list // TODO: Vue.Set
|
||||
|
||||
this[EVENT.BORADCAST_STATUS](broadcast_status)
|
||||
this[EVENT.BROADCAST_STATUS](broadcast_status)
|
||||
}
|
||||
|
||||
protected [EVENT.SYSTEM_SETTINGS]({ id, ...settings }: message.SystemSettingsUpdate) {
|
||||
@ -320,8 +320,8 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
|
||||
// Broadcast Events
|
||||
/////////////////////////////
|
||||
|
||||
protected [EVENT.BORADCAST_STATUS]({ url, is_active }: message.BroadcastStatus) {
|
||||
this._localLog.debug(`EVENT.BORADCAST_STATUS`)
|
||||
protected [EVENT.BROADCAST_STATUS]({ url, is_active }: message.BroadcastStatus) {
|
||||
this._localLog.debug(`EVENT.BROADCAST_STATUS`)
|
||||
// TODO: Handle.
|
||||
this.emit('room.broadcast.status', is_active, url)
|
||||
}
|
||||
@ -336,7 +336,7 @@ export class NekoMessages extends EventEmitter<NekoEvents> {
|
||||
}
|
||||
|
||||
protected [EVENT.SEND_BROADCAST]({ sender, subject, body }: message.SendMessage) {
|
||||
this._localLog.debug(`EVENT.BORADCAST_STATUS`)
|
||||
this._localLog.debug(`EVENT.BROADCAST_STATUS`)
|
||||
this.emit('receive.broadcast', sender, subject, body)
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,7 @@ export const CLIPBOARD_SET = 'clipboard/set'
|
||||
export const KEYBOARD_MODIFIERS = 'keyboard/modifiers'
|
||||
export const KEYBOARD_MAP = 'keyboard/map'
|
||||
|
||||
export const BORADCAST_STATUS = 'broadcast/status'
|
||||
export const BROADCAST_STATUS = 'broadcast/status'
|
||||
|
||||
export const SEND_UNICAST = 'send/unicast'
|
||||
export const SEND_BROADCAST = 'send/broadcast'
|
||||
|
@ -22,7 +22,7 @@ func (h *RoomHandler) broadcastStatus(w http.ResponseWriter, r *http.Request) er
|
||||
})
|
||||
}
|
||||
|
||||
func (h *RoomHandler) boradcastStart(w http.ResponseWriter, r *http.Request) error {
|
||||
func (h *RoomHandler) broadcastStart(w http.ResponseWriter, r *http.Request) error {
|
||||
data := &BroadcastStatusPayload{}
|
||||
if err := utils.HttpJsonRequest(w, r, data); err != nil {
|
||||
return err
|
||||
@ -42,7 +42,7 @@ func (h *RoomHandler) boradcastStart(w http.ResponseWriter, r *http.Request) err
|
||||
}
|
||||
|
||||
h.sessions.AdminBroadcast(
|
||||
event.BORADCAST_STATUS,
|
||||
event.BROADCAST_STATUS,
|
||||
message.BroadcastStatus{
|
||||
IsActive: broadcast.Started(),
|
||||
URL: broadcast.Url(),
|
||||
@ -51,7 +51,7 @@ func (h *RoomHandler) boradcastStart(w http.ResponseWriter, r *http.Request) err
|
||||
return utils.HttpSuccess(w)
|
||||
}
|
||||
|
||||
func (h *RoomHandler) boradcastStop(w http.ResponseWriter, r *http.Request) error {
|
||||
func (h *RoomHandler) broadcastStop(w http.ResponseWriter, r *http.Request) error {
|
||||
broadcast := h.capture.Broadcast()
|
||||
if !broadcast.Started() {
|
||||
return utils.HttpUnprocessableEntity("server is not broadcasting")
|
||||
@ -60,7 +60,7 @@ func (h *RoomHandler) boradcastStop(w http.ResponseWriter, r *http.Request) erro
|
||||
broadcast.Stop()
|
||||
|
||||
h.sessions.AdminBroadcast(
|
||||
event.BORADCAST_STATUS,
|
||||
event.BROADCAST_STATUS,
|
||||
message.BroadcastStatus{
|
||||
IsActive: broadcast.Started(),
|
||||
URL: broadcast.Url(),
|
||||
|
@ -62,8 +62,8 @@ func (h *RoomHandler) Route(r types.Router) {
|
||||
|
||||
r.With(auth.AdminsOnly).Route("/broadcast", func(r types.Router) {
|
||||
r.Get("/", h.broadcastStatus)
|
||||
r.Post("/start", h.boradcastStart)
|
||||
r.Post("/stop", h.boradcastStop)
|
||||
r.Post("/start", h.broadcastStart)
|
||||
r.Post("/stop", h.broadcastStop)
|
||||
})
|
||||
|
||||
r.With(auth.CanAccessClipboardOnly).With(auth.HostsOnly).Route("/clipboard", func(r types.Router) {
|
||||
|
@ -265,7 +265,7 @@ paths:
|
||||
tags:
|
||||
- room
|
||||
summary: start broadcast
|
||||
operationId: boradcastStart
|
||||
operationId: broadcastStart
|
||||
responses:
|
||||
'204':
|
||||
description: OK
|
||||
@ -302,7 +302,7 @@ paths:
|
||||
tags:
|
||||
- room
|
||||
summary: stop broadcast
|
||||
operationId: boradcastStop
|
||||
operationId: broadcastStop
|
||||
responses:
|
||||
'204':
|
||||
description: OK
|
||||
|
@ -70,7 +70,7 @@ const (
|
||||
)
|
||||
|
||||
const (
|
||||
BORADCAST_STATUS = "broadcast/status"
|
||||
BROADCAST_STATUS = "broadcast/status"
|
||||
)
|
||||
|
||||
const (
|
||||
|
Loading…
Reference in New Issue
Block a user