Skip to content

Commit ac779b3

Browse files
author
Rick Wieman
committed
Improved reliability, removed insecure and autopublish.
autopublish and insecure package are removed, and changes regarding these removals are made. System seems to be working correctly now.
1 parent dab552b commit ac779b3

File tree

4 files changed

+32
-18
lines changed

4 files changed

+32
-18
lines changed

.meteor/packages

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
# but you can also edit it by hand.
55

66
standard-app-packages
7-
autopublish
8-
insecure
97
preserve-inputs
108
bootstrap
119
less

client/global.js

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
Accounts.ui.config({
22
passwordSignupFields: 'USERNAME_AND_EMAIL'
3+
});
4+
5+
Meteor.autorun(function() {
6+
if(Meteor.user()) {
7+
Meteor.subscribe("students", Meteor.user().username, function() {
8+
Session.set("ready", true);
9+
});
10+
}
11+
else {
12+
Meteor.subscribe("students", null, function() {
13+
Session.set("ready", true);
14+
});
15+
}
316
});

client/ta.js

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
Template.ta.student = function() {
2-
return Students.findOne({ assistant: Meteor.user().username, approved: {$exists: false}});
3-
}
4-
5-
Template.ta.studentsAvailable = function() {
6-
if(!Template.ta.student()) {
7-
return Students.find({ assistant: {$exists: false}, approved: {$exists: false} }).count();
1+
Meteor.autorun(function() {
2+
if(Meteor.user() && Session.get("ready")) {
3+
if(!Students.findOne({ assistant: Meteor.user().username, approved: {$exists: false} })) {
4+
if(Students.find({assistant: {$exists: false}}).count() > 0) {
5+
Meteor.call('assignGroup', Meteor.user().username);
6+
}
7+
}
88
}
9-
return false;
10-
}
9+
});
1110

12-
Template.ta.assignToMe = function() {
13-
Meteor.call('assignGroup', Meteor.user().username);
11+
Template.ta.student = function() {
12+
return Students.findOne({ assistant: Meteor.user().username, approved: {$exists: false} });
1413
}
1514

1615
Template.ta.events({

server/server.js

+9-5
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,20 @@ Meteor.startup(function () {
55
});
66
});
77

8+
Meteor.publish("students", function (ta) {
9+
if(ta) {
10+
return Students.find({ });
11+
}
12+
13+
return Students.find({ }, {fields: {assistant: 1, cpmGroup: 1}});
14+
});
15+
816
Meteor.methods({
917
assignGroup: function(ta) {
1018
var existing = Students.findOne({ assistant: ta, approved: {$exists: false}});
1119

1220
if(!existing) {
13-
var updateGroup = Students.findOne({ assistant: {$exists: false}, approved: {$exists: false} });
14-
15-
if(updateGroup) {
16-
Students.update({ cpmGroup: updateGroup.cpmGroup }, {$set: {assistant: ta}});
17-
}
21+
Students.update({ assistant: {$exists: false}, approved: {$exists: false} }, {$set: {assistant: ta}});
1822
}
1923
},
2024

0 commit comments

Comments
 (0)