overleaf/services/web/public/coffee/ide/file-tree/controllers/FileTreeController.coffee

448 lines
12 KiB
CoffeeScript
Raw Normal View History

2014-07-08 07:02:26 -04:00
define [
"base"
], (App) ->
App.controller "FileTreeController", ["$scope", "$modal", "ide", "$rootScope", ($scope, $modal, ide, $rootScope) ->
2014-07-08 07:02:26 -04:00
$scope.openNewDocModal = () ->
$modal.open(
templateUrl: "newFileModalTemplate"
controller: "NewFileModalController"
size: 'lg'
2014-07-08 07:02:26 -04:00
resolve: {
parent_folder: () -> ide.fileTreeManager.getCurrentFolder()
type: () -> 'doc'
2014-07-08 07:02:26 -04:00
}
)
$scope.openNewFolderModal = () ->
$modal.open(
templateUrl: "newFolderModalTemplate"
controller: "NewFolderModalController"
resolve: {
parent_folder: () -> ide.fileTreeManager.getCurrentFolder()
}
)
$scope.openUploadFileModal = () ->
$modal.open(
templateUrl: "newFileModalTemplate"
controller: "NewFileModalController"
size: 'lg'
2014-07-08 07:02:26 -04:00
resolve: {
parent_folder: () -> ide.fileTreeManager.getCurrentFolder()
type: () -> 'upload'
2018-05-15 11:22:47 -04:00
}
)
2014-07-08 07:02:26 -04:00
$scope.orderByFoldersFirst = (entity) ->
return '0' if entity?.type == "folder"
2014-07-08 07:02:26 -04:00
return '1'
$scope.startRenamingSelected = () ->
$scope.$broadcast "rename:selected"
$scope.openDeleteModalForSelected = () ->
$scope.$broadcast "delete:selected"
]
App.controller "NewFolderModalController", [
2014-07-08 07:02:26 -04:00
"$scope", "ide", "$modalInstance", "$timeout", "parent_folder",
($scope, ide, $modalInstance, $timeout, parent_folder) ->
$scope.inputs =
name: "name"
2014-07-08 07:02:26 -04:00
$scope.state =
inflight: false
$modalInstance.opened.then () ->
$timeout () ->
$scope.$broadcast "open"
, 200
$scope.create = () ->
name = $scope.inputs.name
if !name? or name.length == 0
return
2014-07-08 07:02:26 -04:00
$scope.state.inflight = true
ide.fileTreeManager
.createFolder(name, $scope.parent_folder)
.then () ->
2014-07-08 07:02:26 -04:00
$scope.state.inflight = false
$modalInstance.dismiss('done')
.catch (response)->
{ data } = response
$scope.error = data
$scope.state.inflight = false
2014-07-08 07:02:26 -04:00
$scope.cancel = () ->
$modalInstance.dismiss('cancel')
]
App.controller "NewFileModalController", [
"$scope", "type", "parent_folder", "$modalInstance"
($scope, type, parent_folder, $modalInstance) ->
$scope.type = type
$scope.parent_folder = parent_folder
$scope.state = {
2014-07-08 07:02:26 -04:00
inflight: false
valid: true
}
$scope.cancel = () ->
$modalInstance.dismiss('cancel')
$scope.create = () ->
$scope.$broadcast 'create'
$scope.$on 'done', () ->
$modalInstance.dismiss('done')
]
2014-07-08 07:02:26 -04:00
App.controller "NewDocModalController", [
"$scope", "ide", "$timeout"
($scope, ide, $timeout) ->
$scope.inputs =
name: "name.tex"
2014-07-08 07:02:26 -04:00
validate = () ->
name = $scope.inputs.name
$scope.state.valid = (name? and name.length > 0)
$scope.$watch 'inputs.name', validate
$timeout () ->
$scope.$broadcast "open"
, 200
$scope.$on 'create', () ->
name = $scope.inputs.name
if !name? or name.length == 0
return
$scope.state.inflight = true
2014-07-08 07:02:26 -04:00
ide.fileTreeManager
.createDoc(name, $scope.parent_folder)
.then () ->
2014-07-08 07:02:26 -04:00
$scope.state.inflight = false
$scope.$emit 'done'
.catch (response)->
{ data } = response
$scope.error = data
$scope.state.inflight = false
2014-07-08 07:02:26 -04:00
]
App.controller "UploadFileModalController", [
"$scope", "$rootScope", "ide", "$timeout", "$window"
($scope, $rootScope, ide, $timeout, $window) ->
$scope.parent_folder_id = $scope.parent_folder?.id
$scope.project_id = ide.project_id
$scope.tooManyFiles = false
$scope.rateLimitHit = false
$scope.secondsToRedirect = 10
$scope.notLoggedIn = false
$scope.conflicts = []
$scope.control = {}
needToLogBackIn = ->
$scope.notLoggedIn = true
decreseTimeout = ->
$timeout (() ->
if $scope.secondsToRedirect == 0
$window.location.href = "/login?redir=/project/#{ide.project_id}"
else
decreseTimeout()
$scope.secondsToRedirect = $scope.secondsToRedirect - 1
), 1000
decreseTimeout()
$scope.max_files = 40
2014-07-08 07:02:26 -04:00
$scope.onComplete = (error, name, response) ->
$timeout (() ->
uploadCount--
if response.success
$rootScope.$broadcast 'file:upload:complete', response
2014-07-08 07:02:26 -04:00
if uploadCount == 0 and response? and response.success
$scope.$emit 'done'
2014-07-08 07:02:26 -04:00
), 250
$scope.onValidateBatch = (files)->
if files.length > $scope.max_files
$timeout (() ->
$scope.tooManyFiles = true
), 1
return false
else
return true
$scope.onError = (id, name, reason)->
console.log(id, name, reason)
if reason.indexOf("429") != -1
$scope.rateLimitHit = true
else if reason.indexOf("403") != -1
needToLogBackIn()
_uploadTimer = null
uploadIfNoConflicts = () ->
if $scope.conflicts.length == 0
$scope.doUpload()
uploadCount = 0
$scope.onSubmit = (id, name) ->
uploadCount++
if ide.fileTreeManager.existsInFolder($scope.parent_folder_id, name)
$scope.conflicts.push name
$scope.$apply()
if !_uploadTimer?
_uploadTimer = setTimeout () ->
_uploadTimer = null
uploadIfNoConflicts()
, 0
return true
$scope.onCancel = (id, name) ->
uploadCount--
index = $scope.conflicts.indexOf(name)
if index > -1
$scope.conflicts.splice(index, 1)
$scope.$apply()
uploadIfNoConflicts()
$scope.doUpload = () ->
$scope.control?.q?.uploadStoredFiles()
]
2018-05-15 11:22:47 -04:00
App.controller "ProjectLinkedFileModalController", [
"$scope", "ide", "$timeout",
($scope, ide, $timeout) ->
2018-06-08 04:35:52 -04:00
2018-05-15 11:22:47 -04:00
$scope.data =
projects: null # or []
2018-05-16 08:26:59 -04:00
selectedProjectId: null
2018-05-15 11:22:47 -04:00
projectEntities: null # or []
2018-06-08 04:35:52 -04:00
projectOutputFiles: null # or []
2018-05-15 11:22:47 -04:00
selectedProjectEntity: null
selectedProjectOutputFile: null
buildId: null
name: null
$scope.state.inFlight =
projects: false
entities: false
compile: false
$scope.state.isOutputFilesMode = false
$scope.state.error = false
2018-05-15 11:22:47 -04:00
2018-05-16 08:26:59 -04:00
$scope.$watch 'data.selectedProjectId', (newVal, oldVal) ->
2018-05-15 11:22:47 -04:00
return if !newVal
$scope.data.selectedProjectEntity = null
$scope.data.selectedProjectOutputFile = null
if $scope.state.isOutputFilesMode
2018-06-08 04:35:52 -04:00
$scope.compileProjectAndGetOutputFiles($scope.data.selectedProjectId)
else
$scope.getProjectEntities($scope.data.selectedProjectId)
2018-05-15 11:22:47 -04:00
$scope.$watch 'state.isOutputFilesMode', (newVal, oldVal) ->
return if !newVal and !oldVal
$scope.data.selectedProjectOutputFile = null
if newVal == true
$scope.compileProjectAndGetOutputFiles($scope.data.selectedProjectId)
else
$scope.getProjectEntities($scope.data.selectedProjectId)
# auto-set filename based on selected file
$scope.$watch 'data.selectedProjectEntity', (newVal, oldVal) ->
return if !newVal
fileName = newVal.split('/').reverse()[0]
if fileName
$scope.data.name = fileName
# auto-set filename based on selected file
$scope.$watch 'data.selectedProjectOutputFile', (newVal, oldVal) ->
return if !newVal
if newVal == 'output.pdf'
project = _.find($scope.data.projects, (p) -> p._id == $scope.data.selectedProjectId)
$scope.data.name = if project?.name? then "#{project.name}.pdf" else 'output.pdf'
else
fileName = newVal.split('/').reverse()[0]
if fileName
$scope.data.name = fileName
_setInFlight = (type) ->
2018-05-16 08:26:59 -04:00
$scope.state.inFlight[type] = true
_reset = (opts) ->
isError = opts.err == true
2018-05-16 06:49:10 -04:00
inFlight = $scope.state.inFlight
inFlight.projects = inFlight.entities = inFlight.compile = false
$scope.state.inflight = false
2018-05-15 11:22:47 -04:00
$scope.state.error = isError
$scope.toggleOutputFilesMode = () ->
return if !$scope.data.selectedProjectId
$scope.state.isOutputFilesMode = !$scope.state.isOutputFilesMode
2018-05-15 11:22:47 -04:00
$scope.shouldEnableProjectSelect = () ->
2018-05-25 11:03:45 -04:00
{ state, data } = $scope
2018-05-16 06:49:10 -04:00
return !state.inFlight.projects && data.projects
2018-05-15 11:22:47 -04:00
$scope.hasNoProjects = () ->
{ state, data } = $scope
return !state.inFlight.projects && (data.projects.length == 0 || !data.projects?)
2018-05-15 11:22:47 -04:00
$scope.shouldEnableProjectEntitySelect = () ->
2018-05-25 11:03:45 -04:00
{ state, data } = $scope
2018-05-16 08:26:59 -04:00
return !state.inFlight.projects && !state.inFlight.entities && data.projects && data.selectedProjectId
2018-05-15 11:22:47 -04:00
2018-06-08 04:35:52 -04:00
$scope.shouldEnableProjectOutputFileSelect = () ->
{ state, data } = $scope
return !state.inFlight.projects && !state.inFlight.compile && data.projects && data.selectedProjectId
validate = () ->
2018-05-15 11:22:47 -04:00
state = $scope.state
data = $scope.data
$scope.state.valid = !state.inFlight.projects &&
2018-05-16 06:49:10 -04:00
!state.inFlight.entities &&
2018-05-15 11:22:47 -04:00
data.projects &&
2018-05-16 08:26:59 -04:00
data.selectedProjectId &&
2018-06-08 04:35:52 -04:00
(
(
!$scope.state.isOutputFilesMode &&
2018-06-08 04:35:52 -04:00
data.projectEntities &&
data.selectedProjectEntity
) ||
(
$scope.state.isOutputFilesMode &&
2018-06-08 04:35:52 -04:00
data.projectOutputFiles &&
data.selectedProjectOutputFile
)
) &&
data.name
$scope.$watch 'state', validate, true
$scope.$watch 'data', validate, true
2018-05-15 11:22:47 -04:00
$scope.getUserProjects = () ->
_setInFlight('projects')
2018-05-15 11:22:47 -04:00
ide.$http.get("/user/projects", {
_csrf: window.csrfToken
})
.then (resp) ->
$scope.data.projectEntities = null
$scope.data.projects = resp.data.projects.filter (p) ->
p._id != ide.project_id
_reset(err: false)
2018-05-15 11:22:47 -04:00
.catch (err) ->
_reset(err: true)
2018-05-15 11:22:47 -04:00
$scope.getProjectEntities = (project_id) =>
_setInFlight('entities')
2018-05-15 11:22:47 -04:00
ide.$http.get("/project/#{project_id}/entities", {
_csrf: window.csrfToken
})
.then (resp) ->
2018-05-16 08:26:59 -04:00
if $scope.data.selectedProjectId == resp.data.project_id
2018-05-15 11:22:47 -04:00
$scope.data.projectEntities = resp.data.entities
_reset(err: false)
2018-05-15 11:22:47 -04:00
.catch (err) ->
_reset(err: true)
2018-05-15 11:22:47 -04:00
$scope.compileProjectAndGetOutputFiles = (project_id) =>
2018-06-08 04:35:52 -04:00
_setInFlight('compile')
ide.$http.post("/project/#{project_id}/compile", {
2018-06-08 04:35:52 -04:00
check: "silent",
draft: false,
incrementalCompilesEnabled: false
_csrf: window.csrfToken
})
.then (resp) ->
if resp.data.status == 'success'
filteredFiles = resp.data.outputFiles.filter (f) ->
f.path.match(/.*\.(pdf|png|jpeg|jpg|gif)/)
$scope.data.projectOutputFiles = filteredFiles
$scope.data.buildId = filteredFiles?[0]?.build
console.log ">> build_id", $scope.data.buildId
_reset(err: false)
else
$scope.data.projectOutputFiles = null
_reset(err: true)
2018-06-08 04:35:52 -04:00
.catch (err) ->
console.error(err)
_reset(err: true)
2018-05-15 11:22:47 -04:00
$scope.init = () ->
$scope.getUserProjects()
$timeout($scope.init, 0)
2018-05-15 11:22:47 -04:00
$scope.$on 'create', () ->
projectId = $scope.data.selectedProjectId
name = $scope.data.name
if $scope.state.isOutputFilesMode
2018-06-08 04:35:52 -04:00
provider = 'project_output_file'
payload = {
source_project_id: projectId,
source_output_file_path: $scope.data.selectedProjectOutputFile,
build_id: $scope.data.buildId
2018-06-08 04:35:52 -04:00
}
else
provider = 'project_file'
payload = {
source_project_id: projectId,
source_entity_path: $scope.data.selectedProjectEntity
}
_setInFlight('create')
ide.fileTreeManager
.createLinkedFile(name, $scope.parent_folder, provider, payload)
.then () ->
_reset(err: false)
$scope.$emit 'done'
.catch (response)->
{ data } = response
_reset(err: true)
2018-05-15 11:22:47 -04:00
]
App.controller "UrlLinkedFileModalController", [
"$scope", "ide", "$timeout"
($scope, ide, $timeout) ->
$scope.inputs =
name: ""
url: ""
$scope.nameChangedByUser = false
$timeout () ->
$scope.$broadcast "open"
, 200
validate = () ->
{name, url} = $scope.inputs
if !name? or name.length == 0
$scope.state.valid = false
else if !url? or url.length == 0
$scope.state.valid = false
else
$scope.state.valid = true
$scope.$watch 'inputs.name', validate
$scope.$watch 'inputs.url', validate
$scope.$watch "inputs.url", (url) ->
if url? and url != "" and !$scope.nameChangedByUser
url = url.replace("://", "") # Ignore http:// etc
parts = url.split("/").reverse()
if parts.length > 1 # Wait for at one /
$scope.inputs.name = parts[0]
$scope.$on 'create', () ->
{name, url} = $scope.inputs
if !name? or name.length == 0
return
if !url? or url.length == 0
return
$scope.state.inflight = true
ide.fileTreeManager
.createLinkedFile(name, $scope.parent_folder, 'url', {url})
.then () ->
$scope.state.inflight = false
$scope.$emit 'done'
.catch (response)->
{ data } = response
$scope.error = data
$scope.state.inflight = false
]