mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
remove extra logging in migration and change file paths in migration 2
This commit is contained in:
parent
ffd21cd080
commit
40f9a59507
1 changed files with 3 additions and 7 deletions
|
@ -2,15 +2,14 @@ Settings = require "settings-sharelatex"
|
||||||
fs = require("fs")
|
fs = require("fs")
|
||||||
mongojs = require("mongojs")
|
mongojs = require("mongojs")
|
||||||
ObjectId = mongojs.ObjectId
|
ObjectId = mongojs.ObjectId
|
||||||
console.log Settings.mongo.url
|
|
||||||
db = mongojs(Settings.mongo.url, ['projects', 'docs'])
|
db = mongojs(Settings.mongo.url, ['projects', 'docs'])
|
||||||
_ = require("lodash")
|
_ = require("lodash")
|
||||||
async = require("async")
|
async = require("async")
|
||||||
exec = require("child_process").exec
|
exec = require("child_process").exec
|
||||||
|
|
||||||
finished_projects_path = "./finished-projects"
|
finished_projects_path = "/tmp/finished-projects-2"
|
||||||
all_projects_path = "./all-projects"
|
all_projects_path = "/tmp/all-projects-2"
|
||||||
unmigrated_docs_path = "./unmigrated"
|
unmigrated_docs_path = "/tmp/unmigrated-2"
|
||||||
|
|
||||||
|
|
||||||
printProgress = ->
|
printProgress = ->
|
||||||
|
@ -108,7 +107,6 @@ isDocInDocCollection = (doc, callback)->
|
||||||
return callback(null, true)
|
return callback(null, true)
|
||||||
db.docs.find({_id: ObjectId(doc._id+"")}, {_id: 1}).limit 1, (err, foundDocs)->
|
db.docs.find({_id: ObjectId(doc._id+"")}, {_id: 1}).limit 1, (err, foundDocs)->
|
||||||
exists = foundDocs.length > 0
|
exists = foundDocs.length > 0
|
||||||
console.log doc._id, "Exits = "+exists
|
|
||||||
callback err, exists
|
callback err, exists
|
||||||
|
|
||||||
getWhichDocsCanBeDeleted = (docs, callback = (err, docsToBeDeleted, unmigratedDocs)->)->
|
getWhichDocsCanBeDeleted = (docs, callback = (err, docsToBeDeleted, unmigratedDocs)->)->
|
||||||
|
@ -131,8 +129,6 @@ whipeDocLines = (project_id, mongoPath, callback)->
|
||||||
$unset: {}
|
$unset: {}
|
||||||
update.$unset["#{mongoPath}.lines"] = ""
|
update.$unset["#{mongoPath}.lines"] = ""
|
||||||
update.$unset["#{mongoPath}.rev"] = ""
|
update.$unset["#{mongoPath}.rev"] = ""
|
||||||
console.log "project id = #{ObjectId(project_id+'')}", update
|
|
||||||
#callback()
|
|
||||||
db.projects.update _id: ObjectId(project_id+''), update, callback
|
db.projects.update _id: ObjectId(project_id+''), update, callback
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue