puter-deploy / src /backend /src /services /FilesystemAPIService.js
gionuibk's picture
Upload folder using huggingface_hub
61d39e2 verified
/*
* Copyright (C) 2024-present Puter Technologies Inc.
*
* This file is part of Puter.
*
* Puter is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const BaseService = require('./BaseService');
/**
* @class FilesystemAPIService
* @extends BaseService
* @description This service handles all filesystem-related API routes,
* allowing for operations like file creation, deletion,
* reading, and searching through a structured set of
* endpoints. It integrates with the web server to expose
* these functionalities for client use.
*/
class FilesystemAPIService extends BaseService {
/**
* Sets up the route handlers for the Filesystem API.
* This method registers various endpoints related to filesystem operations
* such as creating, deleting, reading, and updating files. It uses the
* web server's app instance to attach the corresponding routers.
*
* @async
* @function __on_install.routes
* @returns {Promise<void>} A promise that resolves when the routes are set up.
*/
async ['__on_install.routes'] () {
const { app } = this.services.get('web-server');
// batch
app.use(require('../routers/filesystem_api/batch/all'));
// v2 -- also in batch
app.use(require('../routers/filesystem_api/write'));
app.use(require('../routers/filesystem_api/mkdir'));
app.use(require('../routers/filesystem_api/delete'));
// v2 -- not in batch
app.use(require('../routers/filesystem_api/stat'));
app.use(require('../routers/filesystem_api/touch'));
app.use(require('../routers/filesystem_api/read'));
app.use(require('../routers/filesystem_api/token-read'));
app.use(require('../routers/filesystem_api/readdir'));
app.use(require('../routers/filesystem_api/copy'));
app.use(require('../routers/filesystem_api/move'));
app.use(require('../routers/filesystem_api/rename'));
app.use(require('../routers/filesystem_api/search'));
// temporary or alpha
app.use(require('../routers/filesystem_api/update'));
// v1
app.use(require('../routers/writeFile'));
app.use(require('../routers/file'));
// misc
app.use(require('../routers/df'));
// cache
app.use(require('../routers/filesystem_api/cache'));
}
}
module.exports = FilesystemAPIService;