Merge pull request #51 from ButterCheezii/no-matcher-hang

Fix insane bug where some profiles cause client hang
This commit is contained in:
mrstallion 2021-12-20 16:36:39 -06:00 committed by GitHub
commit 37a45c7f64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 16 deletions

View File

@ -213,7 +213,7 @@ export default class CharacterPreview extends Vue {
updateCustoms(): void { updateCustoms(): void {
this.customs = _.orderBy( this.customs = _.orderBy(
_.map( _.map(
_.reject(this.character!.character.customs || [], (c) => _.isUndefined(c)) as CustomKink[], _.reject(Object.values(this.character!.character.customs ?? []), (c) => _.isUndefined(c)) as CustomKink[],
(c: CustomKink) => _.assign( (c: CustomKink) => _.assign(
{}, {},
c, c,

View File

@ -337,9 +337,9 @@ export class Matcher {
return _.map( return _.map(
speciesOptions, speciesOptions,
(species) => { (species) => {
const nc = _.cloneDeep(c); // Avoid _.cloneDeep because it chokes on array-like objects with very large keys
// _.cloneDeep will happily make arrays with 41 million elements
nc.infotags[TagId.Species] = { string: species }; const nc = {...c, infotags: {...c.infotags, [TagId.Species]: {string: species}}};
return { character: nc, analysis: new CharacterAnalysis(nc) }; return { character: nc, analysis: new CharacterAnalysis(nc) };
} }
@ -975,18 +975,14 @@ export class Matcher {
private getAllStandardKinks(c: Character): { [key: number]: KinkChoice } { private getAllStandardKinks(c: Character): { [key: number]: KinkChoice } {
const kinks = _.pickBy(c.kinks, _.isString); const kinks = _.pickBy(c.kinks, _.isString);
_.each( // Avoid using _.forEach on c.customs because lodash thinks it is an array
c.customs, for (const custom of Object.values(c.customs)) {
(custom: any) => { if (custom) {
if (!custom) { const children = (custom as any).children ?? {};
return;
_.each(children, (child) => kinks[child] = custom.choice);
} }
}
const children = (custom.children) ? custom.children : {};
_.each(children, (child) => kinks[child] = custom.choice);
}
);
return kinks as any; return kinks as any;
} }

View File

@ -26,7 +26,22 @@ export class WorkerStore implements PermanentIndexedStore {
async getProfile(name: string): Promise<ProfileRecord | undefined> { async getProfile(name: string): Promise<ProfileRecord | undefined> {
return this.workerClient.request('get', { name }); const record: ProfileRecord | undefined = await this.workerClient.request('get', { name });
// fix custom kinks to prevent hangs
if (record && Array.isArray(record.profileData.character.customs)) {
// fix customs because it will crash the client
const customsObject: ProfileRecord['profileData']['character']['customs'] = {};
for (const [key, value] of Object.entries(record.profileData.character.customs)) {
if (value !== undefined) customsObject[key] = value;
}
record.profileData.character.customs = customsObject;
}
return record;
} }