Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 132 133 134 135 136 137 138 139 140 141 142 143 | 2x 2x 2x 2x 2x 2x 2x 3x 3x 3x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 2x 2x 2x 1x 1x 1x 2x 2x 2x 2x 1x 1x 1x 1x | import { TwitarrHTTPOptions } from '../api/TwitarrHTTPOptions';
import { TwitarrError } from '../api/TwitarrError';
import { Util } from '../internal/Util';
import { User } from '../model/User';
import { UserProfileInfo } from '../model/UserProfileInfo';
import { AbstractDAO } from './AbstractDAO';
export class UserDAO extends AbstractDAO {
public async login() {
const options = new TwitarrHTTPOptions();
options.data = {
password: this.http.getPassword(),
username: this.http.getUsername(),
};
const result = await this.http.post('/api/v2/user/auth', options);
const data = this.handleErrors(result);
if (data && data.key) {
this.http.setKey(data.key);
return data.key;
}
throw new TwitarrError('No key returned from user auth', result.code, undefined, undefined, result);
}
public async profile(username?: string) {
const url = Util.isEmpty(username) ? '/api/v2/user/whoami' : '/api/v2/user/profile/' + username;
return this.http
.get(url, new TwitarrHTTPOptions().withParameter('app', 'plain'))
.then(result => this.handleErrors(result))
.then(data => {
return UserProfileInfo.fromRest(data);
});
}
public async update(display_name?: string, email?: string, home_location?: string, real_name?: string, pronouns?: string, room_number?: number) {
const options = new TwitarrHTTPOptions();
if (display_name) {
options.parameters.display_name = display_name;
}
if (email) {
options.parameters.email = email;
}
if (home_location) {
options.parameters.home_location = home_location;
}
if (real_name) {
options.parameters.real_name = real_name;
}
if (pronouns) {
options.parameters.pronouns = pronouns;
}
if (room_number) {
options.parameters.room_number = '' + room_number;
}
return this.http
.post('/api/v2/user/profile', options)
.then(result => this.handleErrors(result))
.then(data => {
return UserProfileInfo.fromRest(data);
});
}
public async comment(username: string, comment: string) {
const options = new TwitarrHTTPOptions().withData({
comment,
});
return this.http
.post('/api/v2/user/profile/' + username + '/personal_comment', options)
.then(result => this.handleErrors(result))
.then(data => {
return UserProfileInfo.fromRest(data);
});
}
public async toggleStarred(username: string): Promise<boolean> {
return this.http
.post('/api/v2/user/profile/' + username + '/star')
.then(result => this.handleErrors(result))
.then(data => {
return data.starred;
});
}
public async starred() {
return this.http
.get('/api/v2/user/starred', new TwitarrHTTPOptions().withParameter('app', 'plain'))
.then(result => this.handleErrors(result))
.then(data => {
return data.users.map(user => User.fromRest(user));
});
}
public async createUser(registrationCode: string, username: string, password: string, displayName?: string) {
const options = new TwitarrHTTPOptions()
.withParameter('registration_code', registrationCode)
.withParameter('username', username)
.withParameter('password', password);
if (displayName) {
options.parameters.display_name = displayName;
}
return this.http.post('/api/v2/user/new', options);
}
public async changePassword(currentPassword: string, newPassword: string) {
if (Util.isEmpty(newPassword)) {
throw new TwitarrError('password must not be blank!');
}
const options = new TwitarrHTTPOptions().withData({
current_password: currentPassword,
new_password: newPassword,
});
return this.http.post('/api/v2/user/change_password', options);
}
public async resetPassword(username: string, registrationCode: string, newPassword: string) {
if (Util.isEmpty(newPassword)) {
throw new TwitarrError('password must not be blank!');
}
const options = new TwitarrHTTPOptions().withData({
username: username,
registration_code: registrationCode,
new_password: newPassword,
});
return this.http.post('/api/v2/user/reset_password', options);
}
public async getMentions(): Promise<number> {
return this.http.get('/api/v2/user/mentions').then(res => {
return res.data.mentions;
});
}
public async resetMentions(): Promise<number> {
return this.http.httpDelete('/api/v2/user/mentions').then(res => {
return res.data.mentions;
});
}
}
|