// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* Global fileManager reference useful for poking at from the console.
*/
var fileManager;
/**
* Kick off the file manager dialog.
*
* Called by main.html after the dom has been parsed.
*/
function init() {
var params;
var rootPaths = ['Downloads', 'media'];
if (document.location.search) {
var json = decodeURIComponent(document.location.search.substr(1));
var params = JSON.parse(json);
console.log('params: ' + JSON.stringify(params));
}
function onEntriesFound(entries) {
FileManager.initStrings(function () {
fileManager = new FileManager(document.body, entries, params);
});
}
function onFileSystemFound(filesystem) {
console.log('Found filesystem: ' + filesystem.name, filesystem);
var entries = [];
function onPathError(path, err) {
console.error('Error locating root path: ' + path + ': ' + err);
}
function onEntryFound(entry) {
if (entry) {
entries.push(entry);
} else {
onEntriesFound(entries);
}
}
if (filesystem.name.match(/^chrome-extension_\S+:external/i)) {
// We've been handed the local filesystem, whose root directory
// cannot be enumerated.
util.getDirectories(filesystem.root, {create: false}, rootPaths,
onEntryFound, onPathError);
} else {
util.forEachDirEntry(filesystem.root, onEntryFound);
}
};
util.installFileErrorToString();
console.log('Requesting filesystem.');
chrome.fileBrowserPrivate.requestLocalFileSystem(onFileSystemFound);
}