diff --git a/web/pages/access-tokens.tsx b/web/pages/access-tokens.tsx
index a87de960f..f259ea50c 100644
--- a/web/pages/access-tokens.tsx
+++ b/web/pages/access-tokens.tsx
@@ -1,196 +1,228 @@
-import React, { useState, useEffect } from "react";
+import React, { useState, useEffect } from 'react';
import { Table, Tag, Space, Button, Modal, Checkbox, Input, Typography, Tooltip } from 'antd';
import { DeleteOutlined, EyeTwoTone, EyeInvisibleOutlined } from '@ant-design/icons';
const { Title, Paragraph, Text } = Typography;
-import format from 'date-fns/format'
+import format from 'date-fns/format';
-import {
- fetchData,
- ACCESS_TOKENS,
- DELETE_ACCESS_TOKEN,
- CREATE_ACCESS_TOKEN,
-} from "../utils/apis";
+import { fetchData, ACCESS_TOKENS, DELETE_ACCESS_TOKEN, CREATE_ACCESS_TOKEN } from '../utils/apis';
const availableScopes = {
- 'CAN_SEND_SYSTEM_MESSAGES': { name: 'System messages', description: 'You can send official messages on behalf of the system', color: 'purple' },
- 'CAN_SEND_MESSAGES': { name: 'User chat messages', description: 'You can send messages on behalf of a username', color: 'green' },
- 'HAS_ADMIN_ACCESS': { name: 'Has admin access', description: 'Can perform administrative actions such as moderation, get server statuses, etc', color: 'red' },
+ CAN_SEND_SYSTEM_MESSAGES: {
+ name: 'System messages',
+ description: 'You can send official messages on behalf of the system',
+ color: 'purple',
+ },
+ CAN_SEND_MESSAGES: {
+ name: 'User chat messages',
+ description: 'You can send messages on behalf of a username',
+ color: 'green',
+ },
+ HAS_ADMIN_ACCESS: {
+ name: 'Has admin access',
+ description: 'Can perform administrative actions such as moderation, get server statuses, etc',
+ color: 'red',
+ },
};
function convertScopeStringToTag(scopeString) {
- if (!scopeString || !availableScopes[scopeString]) {
- return null;
- }
+ if (!scopeString || !availableScopes[scopeString]) {
+ return null;
+ }
- const scope = availableScopes[scopeString];
+ const scope = availableScopes[scopeString];
- return (
-
-
- {scope.name}
-
-
- );
+ return (
+
+ {scope.name}
+
+ );
}
function NewTokenModal(props) {
- const [selectedScopes, setSelectedScopes] = useState([]);
- const [name, setName] = useState('');
+ const [selectedScopes, setSelectedScopes] = useState([]);
+ const [name, setName] = useState('');
- const scopes = Object.keys(availableScopes).map(function (key) {
- return { value: key, label: availableScopes[key].description }
- });
+ const scopes = Object.keys(availableScopes).map(function (key) {
+ return { value: key, label: availableScopes[key].description };
+ });
- function onChange(checkedValues) {
- setSelectedScopes(checkedValues);
- }
+ function onChange(checkedValues) {
+ setSelectedScopes(checkedValues);
+ }
- function saveToken() {
- props.onOk(name, selectedScopes);
+ function saveToken() {
+ props.onOk(name, selectedScopes);
- // Clear the modal
- setSelectedScopes([]);
- setName('');
- }
+ // Clear the modal
+ setSelectedScopes([]);
+ setName('');
+ }
- const okButtonProps = {
- disabled: selectedScopes.length === 0 || name === ''
- };
+ const okButtonProps = {
+ disabled: selectedScopes.length === 0 || name === '',
+ };
- function selectAll() {
- setSelectedScopes(Object.keys(availableScopes));
- }
+ function selectAll() {
+ setSelectedScopes(Object.keys(availableScopes));
+ }
- return (
-
- setName(input.currentTarget.value)} />
+ return (
+
+
+ setName(input.currentTarget.value)}
+ />
+
-
- Select the permissions this access token will have. It cannot be edited after it's created.
-
-
- Select all
-
- )
+
+ Select the permissions this access token will have. It cannot be edited after it's created.
+
+
+
+ Select all
+
+
+ );
}
export default function AccessTokens() {
- const [tokens, setTokens] = useState([]);
- const [isTokenModalVisible, setIsTokenModalVisible] = useState(false);
+ const [tokens, setTokens] = useState([]);
+ const [isTokenModalVisible, setIsTokenModalVisible] = useState(false);
- const columns = [
- {
- title: '',
- key: 'delete',
- render: (text, record) => (
-
- handleDeleteToken(record.token)} icon={ } />
-
- )
- },
- {
- title: 'Name',
- dataIndex: 'name',
- key: 'name',
- },
- {
- title: 'Token',
- dataIndex: 'token',
- key: 'token',
- render: (text, record) => (
-
- )
- },
- {
- title: 'Scopes',
- dataIndex: 'scopes',
- key: 'scopes',
- render: scopes => (
- <>
- {scopes.map(scope => {
- return convertScopeStringToTag(scope);
- })}
- >
- ),
- },
- {
- title: 'Last Used',
- dataIndex: 'lastUsed',
- key: 'lastUsed',
- render: (lastUsed) => {
- if (!lastUsed) {
- return 'Never';
- }
- const dateObject = new Date(lastUsed);
- return format(dateObject, 'P p');
- },
- },
- ];
-
- const getAccessTokens = async () => {
- try {
- const result = await fetchData(ACCESS_TOKENS);
- setTokens(result);
- } catch (error) {
- handleError(error);
+ const columns = [
+ {
+ title: '',
+ key: 'delete',
+ render: (text, record) => (
+
+ handleDeleteToken(record.token)} icon={ } />
+
+ ),
+ },
+ {
+ title: 'Name',
+ dataIndex: 'name',
+ key: 'name',
+ },
+ {
+ title: 'Token',
+ dataIndex: 'token',
+ key: 'token',
+ render: (text, record) => ,
+ },
+ {
+ title: 'Scopes',
+ dataIndex: 'scopes',
+ key: 'scopes',
+ render: scopes => (
+ <>
+ {scopes.map(scope => {
+ return convertScopeStringToTag(scope);
+ })}
+ >
+ ),
+ },
+ {
+ title: 'Last Used',
+ dataIndex: 'lastUsed',
+ key: 'lastUsed',
+ render: lastUsed => {
+ if (!lastUsed) {
+ return 'Never';
}
- };
+ const dateObject = new Date(lastUsed);
+ return format(dateObject, 'P p');
+ },
+ },
+ ];
- useEffect(() => {
- getAccessTokens();
- }, []);
-
- async function handleDeleteToken(token) {
- try {
- const result = await fetchData(DELETE_ACCESS_TOKEN, { method: 'POST', data: { token: token } });
- getAccessTokens();
- } catch (error) {
- handleError(error);
- }
+ const getAccessTokens = async () => {
+ try {
+ const result = await fetchData(ACCESS_TOKENS);
+ setTokens(result);
+ } catch (error) {
+ handleError(error);
}
+ };
- async function handleSaveToken(name: string, scopes: string[]) {
- try {
- const newToken = await fetchData(CREATE_ACCESS_TOKEN, { method: 'POST', data: { name: name, scopes: scopes } });
- setTokens(tokens.concat(newToken));
- } catch (error) {
- handleError(error);
- }
+ useEffect(() => {
+ getAccessTokens();
+ }, []);
+
+ async function handleDeleteToken(token) {
+ try {
+ const result = await fetchData(DELETE_ACCESS_TOKEN, {
+ method: 'POST',
+ data: { token: token },
+ });
+ getAccessTokens();
+ } catch (error) {
+ handleError(error);
}
+ }
- function handleError(error) {
- console.error("error", error);
- alert(error);
+ async function handleSaveToken(name: string, scopes: string[]) {
+ try {
+ const newToken = await fetchData(CREATE_ACCESS_TOKEN, {
+ method: 'POST',
+ data: { name: name, scopes: scopes },
+ });
+ setTokens(tokens.concat(newToken));
+ } catch (error) {
+ handleError(error);
}
+ }
- const showCreateTokenModal = () => {
- setIsTokenModalVisible(true);
- };
+ function handleError(error) {
+ console.error('error', error);
+ alert(error);
+ }
- const handleTokenModalSaveButton = (name, scopes) => {
- setIsTokenModalVisible(false);
- handleSaveToken(name, scopes);
- };
+ const showCreateTokenModal = () => {
+ setIsTokenModalVisible(true);
+ };
- const handleTokenModalCancel = () => {
- setIsTokenModalVisible(false);
- };
+ const handleTokenModalSaveButton = (name, scopes) => {
+ setIsTokenModalVisible(false);
+ handleSaveToken(name, scopes);
+ };
- return (
-
-
Access Tokens
-
- Access tokens are used to allow external, 3rd party tools to perform specific actions on your Owncast server.
- They should be kept secure and never included in client code, instead they should be kept on a server that you control.
-
-
- Read more about how to use these tokens, with examples, at our documentation .
-
+ const handleTokenModalCancel = () => {
+ setIsTokenModalVisible(false);
+ };
-
-
Create Access Token
-
-
- );
+ return (
+
+
Access Tokens
+
+ Access tokens are used to allow external, 3rd party tools to perform specific actions on
+ your Owncast server. They should be kept secure and never included in client code, instead
+ they should be kept on a server that you control.
+
+
+ Read more about how to use these tokens, with examples, at{' '}
+ our documentation .
+
+
+
+
+
+ Create Access Token
+
+
+
+ );
}
diff --git a/web/pages/webhooks.tsx b/web/pages/webhooks.tsx
index 0fae6d9d6..a232bef90 100644
--- a/web/pages/webhooks.tsx
+++ b/web/pages/webhooks.tsx
@@ -1,183 +1,216 @@
-import React, { useState, useEffect } from "react";
-import { Table, Tag, Space, Button, Modal, Checkbox, Input, Typography, Tooltip, Select } from 'antd';
+import React, { useState, useEffect } from 'react';
+import {
+ Table,
+ Tag,
+ Space,
+ Button,
+ Modal,
+ Checkbox,
+ Input,
+ Typography,
+ Tooltip,
+ Select,
+} from 'antd';
import { DeleteOutlined, EyeTwoTone, EyeInvisibleOutlined } from '@ant-design/icons';
-import {isValidUrl} from '../utils/urls';
+import { isValidUrl } from '../utils/urls';
const { Title, Paragraph, Text } = Typography;
const { Option } = Select;
-import format from 'date-fns/format'
-
-import {
- fetchData,
- DELETE_WEBHOOK,
- CREATE_WEBHOOK,
- WEBHOOKS,
-} from "../utils/apis";
+import { fetchData, DELETE_WEBHOOK, CREATE_WEBHOOK, WEBHOOKS } from '../utils/apis';
const availableEvents = {
- 'CHAT': { name: 'Chat messages', description: 'When a user sends a chat message', color: 'purple' },
- 'USER_JOINED': { name: 'User joined', description: 'When a user joins the chat', color: 'green'},
- 'NAME_CHANGE': { name: 'User name changed', description: 'When a user changes their name', color: 'blue'},
- 'VISIBILITY-UPDATE': { name: 'Message visibility changed', description: 'When a message visibility changes, likely due to moderation', color: 'red'},
- 'STREAM_STARTED': {name: 'Stream started', description: 'When a stream starts', color: 'orange'},
- 'STREAM_STOPPED': {name: 'Stream stopped', description: 'When a stream stops', color: 'cyan'}
-
+ CHAT: { name: 'Chat messages', description: 'When a user sends a chat message', color: 'purple' },
+ USER_JOINED: { name: 'User joined', description: 'When a user joins the chat', color: 'green' },
+ NAME_CHANGE: {
+ name: 'User name changed',
+ description: 'When a user changes their name',
+ color: 'blue',
+ },
+ 'VISIBILITY-UPDATE': {
+ name: 'Message visibility changed',
+ description: 'When a message visibility changes, likely due to moderation',
+ color: 'red',
+ },
+ STREAM_STARTED: { name: 'Stream started', description: 'When a stream starts', color: 'orange' },
+ STREAM_STOPPED: { name: 'Stream stopped', description: 'When a stream stops', color: 'cyan' },
};
function convertEventStringToTag(eventString) {
- if (!eventString || !availableEvents[eventString]) {
- return null;
- }
+ if (!eventString || !availableEvents[eventString]) {
+ return null;
+ }
- const event = availableEvents[eventString];
+ const event = availableEvents[eventString];
- return (
-
-
- {event.name}
-
-
- );
+ return (
+
+ {event.name}
+
+ );
}
function NewWebhookModal(props) {
- const [selectedEvents, setSelectedEvents] = useState([]);
- const [webhookUrl, setWebhookUrl] = useState('');
+ const [selectedEvents, setSelectedEvents] = useState([]);
+ const [webhookUrl, setWebhookUrl] = useState('');
- const events = Object.keys(availableEvents).map(function (key) {
- return { value: key, label: availableEvents[key].description }
- });
+ const events = Object.keys(availableEvents).map(function (key) {
+ return { value: key, label: availableEvents[key].description };
+ });
+ function onChange(checkedValues) {
+ setSelectedEvents(checkedValues);
+ }
- function onChange(checkedValues) {
- setSelectedEvents(checkedValues);
- }
+ function selectAll() {
+ setSelectedEvents(Object.keys(availableEvents));
+ }
- function selectAll() {
- setSelectedEvents(Object.keys(availableEvents));
- }
+ function save() {
+ props.onOk(webhookUrl, selectedEvents);
- function save() {
- props.onOk(webhookUrl, selectedEvents)
-
- // Reset the modal
- setWebhookUrl('');
- setSelectedEvents(null);
- }
+ // Reset the modal
+ setWebhookUrl('');
+ setSelectedEvents(null);
+ }
- const okButtonProps = {
- disabled: selectedEvents?.length === 0 || !isValidUrl(webhookUrl)
- };
+ const okButtonProps = {
+ disabled: selectedEvents?.length === 0 || !isValidUrl(webhookUrl),
+ };
- return (
-
- setWebhookUrl(input.currentTarget.value)} />
+ return (
+
+
+ setWebhookUrl(input.currentTarget.value)}
+ />
+
-
- Select the events that will be sent to this webhook.
-
-
- Select all
-
- )
+ Select the events that will be sent to this webhook.
+
+
+ Select all
+
+
+ );
}
export default function Webhooks() {
- const [webhooks, setWebhooks] = useState([]);
- const [isModalVisible, setIsModalVisible] = useState(false);
+ const [webhooks, setWebhooks] = useState([]);
+ const [isModalVisible, setIsModalVisible] = useState(false);
- const columns = [
- {
- title: '',
- key: 'delete',
- render: (text, record) => (
-
- handleDelete(record.id)} icon={ } />
-
- )
- },
- {
- title: 'URL',
- dataIndex: 'url',
- key: 'url',
- },
- {
- title: 'Events',
- dataIndex: 'events',
- key: 'events',
- render: events => (
- <>
- {events.map(event => {
- return convertEventStringToTag(event);
- })}
- >
- ),
- },
- ];
+ const columns = [
+ {
+ title: '',
+ key: 'delete',
+ render: (text, record) => (
+
+ handleDelete(record.id)} icon={ } />
+
+ ),
+ },
+ {
+ title: 'URL',
+ dataIndex: 'url',
+ key: 'url',
+ },
+ {
+ title: 'Events',
+ dataIndex: 'events',
+ key: 'events',
+ render: events => (
+ <>
+ {events.map(event => {
+ return convertEventStringToTag(event);
+ })}
+ >
+ ),
+ },
+ ];
- const getWebhooks = async () => {
- try {
- const result = await fetchData(WEBHOOKS);
- setWebhooks(result);
- } catch (error) {
- handleError(error);
- }
- };
-
- useEffect(() => {
- getWebhooks();
- }, []);
-
- async function handleDelete(id) {
- try {
- const result = await fetchData(DELETE_WEBHOOK, { method: 'POST', data: { id: id } });
- getWebhooks();
- } catch (error) {
- handleError(error);
- }
+ const getWebhooks = async () => {
+ try {
+ const result = await fetchData(WEBHOOKS);
+ setWebhooks(result);
+ } catch (error) {
+ handleError(error);
}
+ };
- async function handleSave(url: string, events: string[]) {
- try {
- const newHook = await fetchData(CREATE_WEBHOOK, { method: 'POST', data: { url: url, events: events } });
- setWebhooks(webhooks.concat(newHook));
- } catch (error) {
- handleError(error);
- }
+ useEffect(() => {
+ getWebhooks();
+ }, []);
+
+ async function handleDelete(id) {
+ try {
+ const result = await fetchData(DELETE_WEBHOOK, { method: 'POST', data: { id: id } });
+ getWebhooks();
+ } catch (error) {
+ handleError(error);
}
+ }
- function handleError(error) {
- console.error("error", error);
- alert(error);
+ async function handleSave(url: string, events: string[]) {
+ try {
+ const newHook = await fetchData(CREATE_WEBHOOK, {
+ method: 'POST',
+ data: { url: url, events: events },
+ });
+ setWebhooks(webhooks.concat(newHook));
+ } catch (error) {
+ handleError(error);
}
+ }
- const showCreateModal = () => {
- setIsModalVisible(true);
- };
+ function handleError(error) {
+ console.error('error', error);
+ alert(error);
+ }
- const handleModalSaveButton = (url, events) => {
- setIsModalVisible(false);
- handleSave(url, events);
- };
+ const showCreateModal = () => {
+ setIsModalVisible(true);
+ };
- const handleModalCancelButton = () => {
- setIsModalVisible(false);
- };
+ const handleModalSaveButton = (url, events) => {
+ setIsModalVisible(false);
+ handleSave(url, events);
+ };
- return (
-
-
Webhooks
-
- A webhook is a callback made to an external API in response to an event. These are endpoints that live outside of Owncast and run code who wants to be made aware of events that take place on your server.
-
-
- Read more about how to use webhooks, with examples, at our documentation .
-
+ const handleModalCancelButton = () => {
+ setIsModalVisible(false);
+ };
-
-
Create Webhook
-
-
- );
+ return (
+
+
Webhooks
+
+ A webhook is a callback made to an external API in response to an event that takes place
+ within Owncast. This can be used to build chat bots or sending automatic notifications that
+ you've started streaming.
+
+
+ Read more about how to use webhooks, with examples, at{' '}
+ our documentation .
+
+
+
+
+
+ Create Webhook
+
+
+
+ );
}