Handle centralized app state and registration + chat history

This commit is contained in:
Gabe Kangas 2022-05-02 17:45:22 -07:00
parent b590e4f765
commit a0354d6d49
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA
11 changed files with 257 additions and 45 deletions

View file

@ -18,6 +18,7 @@ func ExternalGetChatMessages(integration user.ExternalAPIUser, w http.ResponseWr
// GetChatMessages gets all of the chat messages.
func GetChatMessages(u user.User, w http.ResponseWriter, r *http.Request) {
middleware.EnableCors(w)
getChatMessages(w, r)
}
@ -41,7 +42,16 @@ func getChatMessages(w http.ResponseWriter, r *http.Request) {
// RegisterAnonymousChatUser will register a new user.
func RegisterAnonymousChatUser(w http.ResponseWriter, r *http.Request) {
if r.Method != POST {
middleware.EnableCors(w)
if r.Method == "OPTIONS" {
// All OPTIONS requests should have a wildcard CORS header.
w.Header().Set("Access-Control-Allow-Origin", "*")
w.WriteHeader(http.StatusNoContent)
return
}
if r.Method != http.MethodPost {
WriteSimpleResponse(w, false, r.Method+" not supported")
return
}

View file

@ -38,6 +38,8 @@ module.exports = {
'no-console': 'off',
'no-use-before-define': [0],
'@typescript-eslint/no-use-before-define': [1],
'no-shadow': 'off',
'@typescript-eslint/no-shadow': ['error'],
'react/jsx-no-target-blank': [
1,
{

View file

@ -2,7 +2,7 @@ import { Menu, Dropdown } from 'antd';
import { DownOutlined } from '@ant-design/icons';
import { useRecoilState } from 'recoil';
import { ChatVisibilityState, ChatState } from '../interfaces/application-state';
import { chatVisibility as chatVisibilityAtom } from './stores/ClientConfigStore';
import { chatVisibilityAtom as chatVisibilityAtom } from './stores/ClientConfigStore';
interface Props {
username: string;

View file

@ -21,7 +21,7 @@ export default function ChatContainer(props: Props) {
<Spin spinning={loading} />
<Virtuoso
style={{ height: 400 }}
style={{ height: '400px' }}
ref={chatContainerRef}
initialTopMostItemIndex={999}
data={messages}

View file

@ -1,79 +1,104 @@
import { useEffect } from 'react';
import { atom, useRecoilState } from 'recoil';
import { useEffect, useLayoutEffect } from 'react';
import { atom, useRecoilState, useSetRecoilState } from 'recoil';
import { makeEmptyClientConfig, ClientConfig } from '../../interfaces/client-config.model';
import ClientConfigService from '../../services/client-config-service';
import ChatService from '../../services/chat-service';
import WebsocketService from '../../services/websocket-service';
import { ChatMessage } from '../../interfaces/chat-message.model';
import { getLocalStorage, setLocalStorage } from '../../utils/helpers';
import { ChatVisibilityState } from '../../interfaces/application-state';
import {
AppState,
ChatState,
ChatVisibilityState,
getChatState,
getChatVisibilityState,
} from '../../interfaces/application-state';
// The config that comes from the API.
export const clientConfigState = atom({
export const clientConfigStateAtom = atom({
key: 'clientConfigState',
default: makeEmptyClientConfig(),
});
export const chatVisibility = atom<ChatVisibilityState>({
key: 'chatVisibility',
default: ChatVisibilityState.Hidden,
export const appStateAtom = atom<AppState>({
key: 'appStateAtom',
default: AppState.Loading,
});
export const chatDisplayName = atom({
export const chatStateAtom = atom<ChatState>({
key: 'chatStateAtom',
default: ChatState.Offline,
});
export const chatVisibilityAtom = atom<ChatVisibilityState>({
key: 'chatVisibility',
default: ChatVisibilityState.Visible,
});
export const chatDisplayNameAtom = atom<string>({
key: 'chatDisplayName',
default: null,
});
export const accessTokenAtom = atom({
key: 'accessToken',
export const accessTokenAtom = atom<string>({
key: 'accessTokenAtom',
default: null,
});
export const chatMessages = atom({
export const chatMessagesAtom = atom<ChatMessage[]>({
key: 'chatMessages',
default: [] as ChatMessage[],
});
export function ClientConfigStore() {
const [, setClientConfig] = useRecoilState<ClientConfig>(clientConfigState);
const [, setChatMessages] = useRecoilState<ChatMessage[]>(chatMessages);
const setClientConfig = useSetRecoilState<ClientConfig>(clientConfigStateAtom);
const [appState, setAppState] = useRecoilState<AppState>(appStateAtom);
const setChatVisibility = useSetRecoilState<ChatVisibilityState>(chatVisibilityAtom);
const [chatState, setChatState] = useRecoilState<ChatState>(chatStateAtom);
const setChatMessages = useSetRecoilState<ChatMessage[]>(chatMessagesAtom);
const [accessToken, setAccessToken] = useRecoilState<string>(accessTokenAtom);
const [, setChatDisplayName] = useRecoilState<string>(chatDisplayName);
const setChatDisplayName = useSetRecoilState<string>(chatDisplayNameAtom);
const updateClientConfig = async () => {
try {
const config = await ClientConfigService.getConfig();
console.log(`ClientConfig: ${JSON.stringify(config)}`);
// console.log(`ClientConfig: ${JSON.stringify(config)}`);
setClientConfig(config);
setAppState(AppState.Online);
} catch (error) {
console.error(`ClientConfigService -> getConfig() ERROR: \n${error}`);
}
};
const handleUserRegistration = async (optionalDisplayName: string) => {
const handleUserRegistration = async (optionalDisplayName?: string) => {
try {
setAppState(AppState.Registering);
const response = await ChatService.registerUser(optionalDisplayName);
console.log(`ChatService -> registerUser() response: \n${JSON.stringify(response)}`);
const { accessToken: newAccessToken, displayName } = response;
console.log(`ChatService -> registerUser() response: \n${response}`);
const { accessToken: newAccessToken, displayName: newDisplayName } = response;
if (!newAccessToken) {
return;
}
setAccessToken(accessToken);
setLocalStorage('accessToken', newAccessToken);
setChatDisplayName(displayName);
console.log('setting access token', newAccessToken);
setAccessToken(newAccessToken);
// setLocalStorage('accessToken', newAccessToken);
setChatDisplayName(newDisplayName);
setAppState(AppState.Online);
} catch (e) {
console.error(`ChatService -> registerUser() ERROR: \n${e}`);
}
};
// TODO: Requires access token.
const getChatHistory = async () => {
setChatState(ChatState.Loading);
try {
const messages = await ChatService.getChatHistory(accessToken);
console.log(`ChatService -> getChatHistory() messages: \n${JSON.stringify(messages)}`);
// console.log(`ChatService -> getChatHistory() messages: \n${JSON.stringify(messages)}`);
setChatMessages(messages);
} catch (error) {
console.error(`ChatService -> getChatHistory() ERROR: \n${error}`);
}
setChatState(ChatState.Available);
};
useEffect(() => {
@ -81,9 +106,29 @@ export function ClientConfigStore() {
handleUserRegistration();
}, []);
useEffect(() => {
useLayoutEffect(() => {
if (!accessToken) {
return;
}
console.log('access token changed', accessToken);
getChatHistory();
}, [accessToken]);
useEffect(() => {
const updatedChatState = getChatState(appState);
setChatState(updatedChatState);
const updatedChatVisibility = getChatVisibilityState(appState);
console.log(
'app state: ',
AppState[appState],
'chat state:',
ChatState[updatedChatState],
'chat visibility:',
ChatVisibilityState[updatedChatVisibility],
);
setChatVisibility(updatedChatVisibility);
}, [appState]);
return null;
}

View file

@ -1,6 +1,6 @@
import { useRecoilValue } from 'recoil';
import { Layout, Row, Col, Tabs } from 'antd';
import { clientConfigState } from '../../stores/ClientConfigStore';
import { clientConfigStateAtom } from '../../stores/ClientConfigStore';
import { ClientConfig } from '../../../interfaces/client-config.model';
import CustomPageContent from '../../CustomPageContent';
import OwncastPlayer from '../../video/OwncastPlayer';
@ -11,7 +11,7 @@ const { TabPane } = Tabs;
const { Content } = Layout;
export default function FooterComponent() {
const clientConfig = useRecoilValue<ClientConfig>(clientConfigState);
const clientConfig = useRecoilValue<ClientConfig>(clientConfigStateAtom);
const { extraPageContent } = clientConfig;
return (

View file

@ -1,18 +1,25 @@
import Sider from 'antd/lib/layout/Sider';
import { useRecoilValue } from 'recoil';
import { useEffect } from 'react';
import { ChatMessage } from '../../../interfaces/chat-message.model';
import ChatContainer from '../../chat/ChatContainer';
import { chatMessages, chatVisibility as chatVisibilityAtom } from '../../stores/ClientConfigStore';
import { ChatVisibilityState } from '../../../interfaces/application-state';
import {
chatMessagesAtom,
chatVisibilityAtom,
chatStateAtom,
} from '../../stores/ClientConfigStore';
import { ChatState, ChatVisibilityState } from '../../../interfaces/application-state';
import ChatTextField from '../../chat/ChatTextField';
export default function Sidebar() {
const messages = useRecoilValue<ChatMessage[]>(chatMessages);
const messages = useRecoilValue<ChatMessage[]>(chatMessagesAtom);
const chatVisibility = useRecoilValue<ChatVisibilityState>(chatVisibilityAtom);
const chatState = useRecoilValue<ChatState>(chatStateAtom);
return (
<Sider
collapsed={chatVisibility === ChatVisibilityState.Hidden}
collapsedWidth={0}
width={300}
style={{
position: 'fixed',
@ -21,7 +28,7 @@ export default function Sidebar() {
bottom: 0,
}}
>
<ChatContainer messages={messages} />
<ChatContainer messages={messages} state={chatState} />
<ChatTextField />
</Sider>
);

View file

@ -1,5 +1,6 @@
export enum AppState {
Loading, // Initial loading state as config + status is loading.
Registering, // Creating a default anonymous chat account.
Online, // Stream is active.
Offline, // Stream is not active.
OfflineWaiting, // Period of time after going offline chat is still available.
@ -30,6 +31,8 @@ export function getChatState(state: AppState): ChatState {
return ChatState.NotAvailable;
case AppState.OfflineWaiting:
return ChatState.Available;
case AppState.Registering:
return ChatState.Loading;
default:
return ChatState.Offline;
}
@ -47,6 +50,8 @@ export function getChatVisibilityState(state: AppState): ChatVisibilityState {
return ChatVisibilityState.Hidden;
case AppState.OfflineWaiting:
return ChatVisibilityState.Visible;
case AppState.Registering:
return ChatVisibilityState.Visible;
default:
return ChatVisibilityState.Hidden;
}

View file

@ -1,4 +1,5 @@
import { ChatMessage } from '../interfaces/chat-message.model';
import { getUnauthedData } from '../utils/apis';
const ENDPOINT = `http://localhost:8080/api/chat`;
const URL_CHAT_REGISTRATION = `http://localhost:8080/api/chat/register`;
@ -10,9 +11,8 @@ interface UserRegistrationResponse {
class ChatService {
public static async getChatHistory(accessToken: string): Promise<ChatMessage[]> {
const response = await fetch(`${ENDPOINT}?accessToken=${accessToken}`);
const status = await response.json();
return status;
const response = await getUnauthedData(`${ENDPOINT}?accessToken=${accessToken}`);
return response;
}
public static async registerUser(username: string): Promise<UserRegistrationResponse> {
@ -24,15 +24,8 @@ class ChatService {
body: JSON.stringify({ displayName: username }),
};
try {
const response = await fetch(URL_CHAT_REGISTRATION, options);
const result = await response.json();
return result;
} catch (e) {
console.error(e);
}
return null;
const response = await getUnauthedData(URL_CHAT_REGISTRATION, options);
return response;
}
}

View file

@ -0,0 +1,138 @@
import { message } from "antd";
enum SocketMessageType {
CHAT = 'CHAT',
PING = 'PING',
NAME_CHANGE = 'NAME_CHANGE',
PONG = 'PONG',
SYSTEM = 'SYSTEM',
USER_JOINED = 'USER_JOINED',
CHAT_ACTION = 'CHAT_ACTION',
FEDIVERSE_ENGAGEMENT_FOLLOW = 'FEDIVERSE_ENGAGEMENT_FOLLOW',
FEDIVERSE_ENGAGEMENT_LIKE = 'FEDIVERSE_ENGAGEMENT_LIKE',
FEDIVERSE_ENGAGEMENT_REPOST = 'FEDIVERSE_ENGAGEMENT_REPOST',
CONNECTED_USER_INFO = 'CONNECTED_USER_INFO',
ERROR_USER_DISABLED = 'ERROR_USER_DISABLED',
ERROR_NEEDS_REGISTRATION = 'ERROR_NEEDS_REGISTRATION',
ERROR_MAX_CONNECTIONS_EXCEEDED = 'ERROR_MAX_CONNECTIONS_EXCEEDED',
VISIBILITY_UPDATE = 'VISIBILITY-UPDATE',
};
interface SocketMessage {
type: SocketMessageType;
data: any;
}
export default class WebsocketService {
websocket: WebSocket;
accessToken: string;
path: string;
websocketReconnectTimer: ReturnType<typeof setTimeout>;
constructor(accessToken, path) {
this.accessToken = accessToken;
this.path = 'http://localhost:8080/ws';
// this.websocketReconnectTimer = null;
// this.accessToken = accessToken;
// this.websocketConnectedListeners = [];
// this.websocketDisconnectListeners = [];
// this.rawMessageListeners = [];
// this.send = this.send.bind(this);
// this.createAndConnect = this.createAndConnect.bind(this);
// this.scheduleReconnect = this.scheduleReconnect.bind(this);
// this.shutdown = this.shutdown.bind(this);
// this.isShutdown = false;
this.createAndConnect();
}
createAndConnect() {
const url = new URL(this.path);
url.searchParams.append('accessToken', this.accessToken);
const ws = new WebSocket(url.toString());
ws.onopen = this.onOpen.bind(this);
// ws.onclose = this.onClose.bind(this);
ws.onerror = this.onError.bind(this);
ws.onmessage = this.onMessage.bind(this);
this.websocket = ws;
}
onOpen() {
if (this.websocketReconnectTimer) {
clearTimeout(this.websocketReconnectTimer);
}
}
// On ws error just close the socket and let it re-connect again for now.
onError(e) {
handleNetworkingError(`Socket error: ${JSON.parse(e)}`);
this.websocket.close();
// if (!this.isShutdown) {
// this.scheduleReconnect();
// }
}
/*
onMessage is fired when an inbound object comes across the websocket.
If the message is of type `PING` we send a `PONG` back and do not
pass it along to listeners.
*/
onMessage(e: SocketMessage) {
// Optimization where multiple events can be sent within a
// single websocket message. So split them if needed.
const messages = e.data.split('\n');
let message: SocketMessage;
// eslint-disable-next-line no-plusplus
for (let i = 0; i < messages.length; i++) {
try {
message = JSON.parse(messages[i]);
} catch (e) {
console.error(e, e.data);
return;
}
if (!message.type) {
console.error('No type provided', message);
return;
}
// Send PONGs
if (message.type === SocketMessageType.PING) {
this.sendPong();
return;
}
}
}
// Outbound: Other components can pass an object to `send`.
send(message: any) {
// Sanity check that what we're sending is a valid type.
if (!message.type || !SocketMessageType[message.type]) {
console.warn(`Outbound message: Unknown socket message type: "${message.type}" sent.`);
}
const messageJSON = JSON.stringify(message);
this.websocket.send(messageJSON);
}
// Reply to a PING as a keep alive.
sendPong() {
const pong = { type: SocketMessageType.PONG };
this.send(pong);
}
}
function handleNetworkingError(error) {
console.error(
`Chat has been disconnected and is likely not working for you. It's possible you were removed from chat. If this is a server configuration issue, visit troubleshooting steps to resolve. https://owncast.online/docs/troubleshooting/#chat-is-disabled: ${error}`
);
}

View file

@ -120,6 +120,8 @@ interface FetchOptions {
auth?: boolean;
}
export async function fetchData(url: string, options?: FetchOptions) {
const { data, method = 'GET', auth = true } = options || {};
@ -151,12 +153,22 @@ export async function fetchData(url: string, options?: FetchOptions) {
}
return json;
} catch (error) {
console.error(error);
return error;
// console.log(error)
// throw new Error(error)
}
}
export async function getUnauthedData(url: string, options?: FetchOptions) {
const opts = {
method: 'GET',
auth: false,
...options,
};
return fetchData(url, opts);
}
export async function fetchExternalData(url: string) {
try {
const response = await fetch(url, {