49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
import SimpleSchema from 'simpl-schema';
|
|
import Creatures from '/imports/api/creature/creatures/Creatures.js';
|
|
import CreatureProperties from '/imports/api/creature/creatureProperties/CreatureProperties.js';
|
|
import CreatureLogs from '/imports/api/creature/log/CreatureLogs.js';
|
|
import { assertViewPermission } from '/imports/api/creature/creatures/creaturePermissions.js';
|
|
import recomputeInvetory from '/imports/api/creature/denormalise/recomputeInventory.js';
|
|
import { recomputeCreatureById } from '/imports/api/creature/computation/methods/recomputeCreature.js';
|
|
import VERSION from '/imports/constants/VERSION.js';
|
|
|
|
let schema = new SimpleSchema({
|
|
creatureId: {
|
|
type: String,
|
|
regEx: SimpleSchema.RegEx.Id,
|
|
},
|
|
});
|
|
|
|
Meteor.publish('singleCharacter', function(creatureId){
|
|
schema.validate({ creatureId });
|
|
this.autorun(function (){
|
|
let userId = this.userId;
|
|
let creatureCursor
|
|
creatureCursor = Creatures.find({
|
|
_id: creatureId,
|
|
});
|
|
let creature = creatureCursor.fetch()[0];
|
|
try { assertViewPermission(creature, userId) }
|
|
catch(e){ return [] }
|
|
if (creature.computeVersion !== VERSION){
|
|
try {
|
|
recomputeInvetory(creatureId);
|
|
recomputeCreatureById(creatureId)
|
|
}
|
|
catch(e){ console.error(e) }
|
|
}
|
|
return [
|
|
creatureCursor,
|
|
CreatureProperties.find({
|
|
'ancestors.id': creatureId,
|
|
}),
|
|
CreatureLogs.find({
|
|
creatureId,
|
|
}, {
|
|
limit: 20,
|
|
sort: {date: -1},
|
|
}),
|
|
];
|
|
});
|
|
});
|