mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
32 lines
953 B
TypeScript
32 lines
953 B
TypeScript
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`;
|
|
|
|
interface UserRegistrationResponse {
|
|
id: string;
|
|
accessToken: string;
|
|
displayName: string;
|
|
}
|
|
|
|
class ChatService {
|
|
public static async getChatHistory(accessToken: string): Promise<ChatMessage[]> {
|
|
const response = await getUnauthedData(`${ENDPOINT}?accessToken=${accessToken}`);
|
|
return response;
|
|
}
|
|
|
|
public static async registerUser(username: string): Promise<UserRegistrationResponse> {
|
|
const options = {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ displayName: username }),
|
|
};
|
|
|
|
const response = await getUnauthedData(URL_CHAT_REGISTRATION, options);
|
|
return response;
|
|
}
|
|
}
|
|
|
|
export default ChatService;
|