Spaces:
Sleeping
Sleeping
File size: 7,253 Bytes
da819ac | 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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | const mongoose = require('mongoose');
const SourceText = require('./models/SourceText');
// MongoDB connection
const MONGODB_URI = process.env.MONGODB_URI || 'mongodb+srv://nothingyu:wSg3lbO1PkHiRMq9@sandbox.ecysggv.mongodb.net/?retryWrites=true&w=majority&appName=sandbox';
async function lockWeek1Week2Tasks() {
try {
console.log('π Connecting to MongoDB...');
await mongoose.connect(MONGODB_URI);
console.log('β
Connected to MongoDB');
// Find all Week 1 and Week 2 tutorial tasks
const week1Tasks = await SourceText.find({
category: 'tutorial',
weekNumber: 1
}).sort({ title: 1 });
const week2Tasks = await SourceText.find({
category: 'tutorial',
weekNumber: 2
}).sort({ title: 1 });
console.log(`π Found ${week1Tasks.length} Week 1 tutorial tasks`);
console.log(`π Found ${week2Tasks.length} Week 2 tutorial tasks`);
// Lock Week 1 tasks
console.log('\nπ Locking Week 1 tutorial tasks...');
let lockedWeek1Count = 0;
for (const task of week1Tasks) {
const updatedTask = await SourceText.findByIdAndUpdate(
task._id,
{
isProtected: true,
protectedReason: 'Week 1 tutorial tasks are locked to prevent accidental changes',
lastModified: new Date(),
modificationHistory: [
{
action: 'LOCKED',
timestamp: new Date(),
reason: 'Week 1 tutorial tasks locked for protection'
}
]
},
{ new: true }
);
console.log(`β
Locked: ${updatedTask.title}`);
lockedWeek1Count++;
}
// Lock Week 2 tasks
console.log('\nπ Locking Week 2 tutorial tasks...');
let lockedWeek2Count = 0;
for (const task of week2Tasks) {
const updatedTask = await SourceText.findByIdAndUpdate(
task._id,
{
isProtected: true,
protectedReason: 'Week 2 tutorial tasks are locked to prevent accidental changes',
lastModified: new Date(),
modificationHistory: [
{
action: 'LOCKED',
timestamp: new Date(),
reason: 'Week 2 tutorial tasks locked for protection'
}
]
},
{ new: true }
);
console.log(`β
Locked: ${updatedTask.title}`);
lockedWeek2Count++;
}
console.log(`\nπ LOCKING COMPLETE:`);
console.log(` Week 1: ${lockedWeek1Count} tasks locked`);
console.log(` Week 2: ${lockedWeek2Count} tasks locked`);
// Verify locked tasks
console.log('\nπ Verification - Locked tasks:');
const allLockedTasks = await SourceText.find({
isProtected: true
}).sort({ weekNumber: 1, title: 1 });
allLockedTasks.forEach((task, index) => {
console.log(`${index + 1}. Week ${task.weekNumber} - ${task.title}`);
console.log(` Protected: ${task.isProtected ? 'YES' : 'NO'}`);
console.log(` Reason: ${task.protectedReason}`);
});
console.log(`\nπ Total locked tasks: ${allLockedTasks.length}`);
} catch (error) {
console.error('β Error locking tasks:', error);
process.exit(1);
} finally {
await mongoose.disconnect();
console.log('π Disconnected from MongoDB');
}
}
// SAFE UPDATE FUNCTIONS WITH PROTECTION CHECKS
async function safeUpdateProtectedTask(taskId, updates, reason = 'No reason provided') {
try {
console.log('π Connecting to MongoDB...');
await mongoose.connect(MONGODB_URI);
console.log('β
Connected to MongoDB');
const task = await SourceText.findById(taskId);
if (!task) {
console.log(`β Task with ID ${taskId} not found`);
return;
}
if (task.isProtected) {
console.log(`π« CANNOT UPDATE: Task "${task.title}" is PROTECTED`);
console.log(` Reason: ${task.protectedReason}`);
console.log(` To update this task, you must first unlock it with a special key`);
return;
}
// Safe to update
const updatedTask = await SourceText.findByIdAndUpdate(
taskId,
{
...updates,
lastModified: new Date(),
modificationHistory: [
...(task.modificationHistory || []),
{
action: 'UPDATED',
timestamp: new Date(),
reason: reason
}
]
},
{ new: true }
);
console.log(`β
Updated task: ${updatedTask.title}`);
} catch (error) {
console.error('β Error updating task:', error);
} finally {
await mongoose.disconnect();
console.log('π Disconnected from MongoDB');
}
}
async function unlockProtectedTask(taskId, unlockKey) {
try {
console.log('π Connecting to MongoDB...');
await mongoose.connect(MONGODB_URI);
console.log('β
Connected to MongoDB');
// Simple unlock key - in production, use a more secure method
const VALID_UNLOCK_KEY = 'UNLOCK_WEEK1_WEEK2_2024';
if (unlockKey !== VALID_UNLOCK_KEY) {
console.log('β Invalid unlock key. Protected tasks cannot be unlocked.');
return;
}
const task = await SourceText.findById(taskId);
if (!task) {
console.log(`β Task with ID ${taskId} not found`);
return;
}
if (!task.isProtected) {
console.log(`β οΈ Task "${task.title}" is not protected`);
return;
}
const updatedTask = await SourceText.findByIdAndUpdate(
taskId,
{
isProtected: false,
protectedReason: null,
lastModified: new Date(),
modificationHistory: [
...(task.modificationHistory || []),
{
action: 'UNLOCKED',
timestamp: new Date(),
reason: 'Task unlocked with valid key'
}
]
},
{ new: true }
);
console.log(`β
Unlocked task: ${updatedTask.title}`);
} catch (error) {
console.error('β Error unlocking task:', error);
} finally {
await mongoose.disconnect();
console.log('π Disconnected from MongoDB');
}
}
async function showProtectedTasks() {
try {
console.log('π Connecting to MongoDB...');
await mongoose.connect(MONGODB_URI);
console.log('β
Connected to MongoDB');
const protectedTasks = await SourceText.find({
isProtected: true
}).sort({ weekNumber: 1, title: 1 });
console.log(`\nπ PROTECTED TASKS (${protectedTasks.length} total):`);
protectedTasks.forEach((task, index) => {
console.log(`${index + 1}. Week ${task.weekNumber} - ${task.title}`);
console.log(` ID: ${task._id}`);
console.log(` Protected: ${task.isProtected ? 'YES' : 'NO'}`);
console.log(` Reason: ${task.protectedReason}`);
console.log(` Last Modified: ${task.lastModified}`);
console.log('---');
});
} catch (error) {
console.error('β Error showing protected tasks:', error);
} finally {
await mongoose.disconnect();
console.log('π Disconnected from MongoDB');
}
}
// Export functions for safe operations
module.exports = {
lockWeek1Week2Tasks,
safeUpdateProtectedTask,
unlockProtectedTask,
showProtectedTasks
};
// Run the locking
lockWeek1Week2Tasks(); |