mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
124 lines
No EOL
2.6 KiB
JavaScript
124 lines
No EOL
2.6 KiB
JavaScript
// Users
|
|
|
|
Meteor.publish('users', function(current_user_id) {
|
|
if(current_user_id && isAdmin(Meteor.users.findOne(current_user_id))){
|
|
return Meteor.users.find();
|
|
}else{
|
|
return Meteor.users.find({}, {fields: {emails: false}});
|
|
}
|
|
});
|
|
|
|
Meteor.startup(function(){
|
|
Meteor.users.allow({
|
|
insert: function(userId, doc){
|
|
//TODO
|
|
return true;
|
|
}
|
|
, update: function(userId, docs, fields, modifier){
|
|
//TODO
|
|
console.log("updating user");
|
|
console.log(docs);
|
|
console.log(fields);
|
|
return true;
|
|
}
|
|
, remove: function(userId, docs){
|
|
return false;
|
|
}
|
|
});
|
|
});
|
|
|
|
// Posts
|
|
|
|
Posts = new Meteor.Collection('posts');
|
|
|
|
Meteor.publish('posts', function() {
|
|
return Posts.find({}, {sort: {score: -1}});
|
|
});
|
|
|
|
// FIXME -- check all docs, not just the first one.
|
|
Meteor.startup(function(){
|
|
Posts.allow({
|
|
insert: function(userId, doc){
|
|
if(userId){
|
|
doc.userId = userId;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
, update: function(userId, docs, fields, modifier){
|
|
if(docs[0].user_id && docs[0].user_id==userId){
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
, remove: function(userId, docs){
|
|
if(docs[0].user_id && docs[0].user_id==userId){
|
|
return true;
|
|
}
|
|
return false; }
|
|
});
|
|
});
|
|
|
|
// Comments
|
|
|
|
Comments = new Meteor.Collection('comments');
|
|
|
|
Meteor.publish('comments', function() {
|
|
return Comments.find();
|
|
});
|
|
|
|
Meteor.startup(function(){
|
|
Comments.allow({
|
|
insert: function(userId, doc){
|
|
if(userId){
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
, update: function(userId, docs, fields, modifier){
|
|
if(docs[0].user_id && docs[0].user_id==userId){
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
, remove: function(userId, docs){
|
|
if(docs[0].user_id && docs[0].user_id==userId){
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
});
|
|
});
|
|
|
|
// MyVotes
|
|
|
|
MyVotes = new Meteor.Collection('myvotes');
|
|
|
|
Meteor.publish('myvotes', function() {
|
|
return MyVotes.find();
|
|
});
|
|
|
|
Meteor.startup(function(){
|
|
MyVotes.allow({
|
|
insert: function(){ return false; }
|
|
, update: function(){ return false; }
|
|
, remove: function(){ return false; }
|
|
});
|
|
});
|
|
|
|
|
|
// Settings
|
|
|
|
Settings = new Meteor.Collection('settings');
|
|
|
|
Meteor.publish('settings', function() {
|
|
return Settings.find();
|
|
});
|
|
|
|
Meteor.startup(function(){
|
|
Settings.allow({
|
|
insert: function(){ return true; }
|
|
, update: function(){ return true; }
|
|
, remove: function(){ return true; }
|
|
});
|
|
}); |