-
Notifications
You must be signed in to change notification settings - Fork 1
/
voicenotes-api.ts
131 lines (114 loc) · 3.23 KB
/
voicenotes-api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import { DataAdapter, requestUrl } from 'obsidian';
import { User, VoiceNoteRecordings, VoiceNoteSignedUrl } from './types';
const VOICENOTES_API_URL = 'https://api.voicenotes.com/api';
export default class VoiceNotesApi {
token!: string;
constructor(options: { token?: string }) {
if (options.token) {
this.token = options.token;
}
}
setToken(token: string): void {
this.token = token;
}
async login(options: { username?: string; password?: string }): Promise<string> {
if (options.username && options.password) {
const loginUrl = `${VOICENOTES_API_URL}/auth/login`;
console.log(`loginUrl: ${loginUrl}`);
const response = await requestUrl({
url: loginUrl,
method: 'POST',
contentType: 'application/json',
body: JSON.stringify({
email: options.username,
password: options.password,
}),
});
if (response.status === 200) {
this.token = response.json.authorisation.token;
return this.token;
}
return null;
}
return null;
}
async getSignedUrl(recordingId: number): Promise<VoiceNoteSignedUrl> {
if (this.token) {
const data = await requestUrl({
url: `${VOICENOTES_API_URL}/recordings/${recordingId}/signed-url`,
headers: {
Authorization: `Bearer ${this.token}`,
},
});
return data.json as VoiceNoteSignedUrl;
}
return null;
}
async downloadFile(fs: DataAdapter, url: string, outputLocationPath: string) {
const response = await requestUrl({
url,
});
const buffer = Buffer.from(response.arrayBuffer);
await fs.writeBinary(outputLocationPath, buffer);
}
async deleteRecording(recordingId: number): Promise<boolean> {
if (this.token) {
const data = await requestUrl({
url: `${VOICENOTES_API_URL}/recordings/${recordingId}`,
headers: {
Authorization: `Bearer ${this.token}`,
},
method: 'DELETE',
});
return data.status === 200;
}
return false;
}
async getRecordingsFromLink(link: string): Promise<VoiceNoteRecordings> {
if (this.token) {
const data = await requestUrl({
url: link,
headers: {
Authorization: `Bearer ${this.token}`,
},
});
return data.json as VoiceNoteRecordings;
}
return null;
}
async getRecordings(): Promise<VoiceNoteRecordings> {
if (this.token) {
try {
const data = await requestUrl({
url: `${VOICENOTES_API_URL}/recordings`,
headers: {
Authorization: `Bearer ${this.token}`,
},
});
return data.json as VoiceNoteRecordings;
} catch (error) {
if (error.status === 401) {
this.token = undefined;
throw error; // rethrow so we can catch in caller
}
}
}
return null;
}
async getUserInfo(): Promise<User> {
if (this.token) {
try {
const data = await requestUrl({
url: `${VOICENOTES_API_URL}/auth/me`,
headers: {
Authorization: `Bearer ${this.token}`,
},
});
return data.json;
} catch (error) {
console.error(error);
}
}
return null;
}
}