mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 07:35:05 -04:00

This puts global state change logic with the rest of the global state management logic. This also makes it possible to create temporary Pad objects without triggering plugin actions.
210 lines
4.9 KiB
JavaScript
210 lines
4.9 KiB
JavaScript
'use strict';
|
|
/**
|
|
* The Pad Manager is a Factory for pad Objects
|
|
*/
|
|
|
|
/*
|
|
* 2011 Peter 'Pita' Martischka (Primary Technology Ltd)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS-IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
const CustomError = require('../utils/customError');
|
|
const Pad = require('../db/Pad').Pad;
|
|
const db = require('./DB');
|
|
const hooks = require('../../static/js/pluginfw/hooks');
|
|
|
|
/**
|
|
* A cache of all loaded Pads.
|
|
*
|
|
* Provides "get" and "set" functions,
|
|
* which should be used instead of indexing with brackets. These prepend a
|
|
* colon to the key, to avoid conflicting with built-in Object methods or with
|
|
* these functions themselves.
|
|
*
|
|
* If this is needed in other places, it would be wise to make this a prototype
|
|
* that's defined somewhere more sensible.
|
|
*/
|
|
const globalPads = {
|
|
get(name) { return this[`:${name}`]; },
|
|
set(name, value) {
|
|
this[`:${name}`] = value;
|
|
},
|
|
remove(name) {
|
|
delete this[`:${name}`];
|
|
},
|
|
};
|
|
|
|
/**
|
|
* A cache of the list of all pads.
|
|
*
|
|
* Updated without db access as new pads are created/old ones removed.
|
|
*/
|
|
const padList = {
|
|
list: new Set(),
|
|
cachedList: undefined,
|
|
initiated: false,
|
|
async init() {
|
|
const dbData = await db.findKeys('pad:*', '*:*:*');
|
|
|
|
if (dbData != null) {
|
|
this.initiated = true;
|
|
|
|
for (const val of dbData) {
|
|
this.addPad(val.replace(/^pad:/, ''), false);
|
|
}
|
|
}
|
|
|
|
return this;
|
|
},
|
|
async load() {
|
|
if (!this.initiated) {
|
|
return this.init();
|
|
}
|
|
|
|
return this;
|
|
},
|
|
/**
|
|
* Returns all pads in alphabetical order as array.
|
|
*/
|
|
async getPads() {
|
|
await this.load();
|
|
|
|
if (!this.cachedList) {
|
|
this.cachedList = Array.from(this.list).sort();
|
|
}
|
|
|
|
return this.cachedList;
|
|
},
|
|
addPad(name) {
|
|
if (!this.initiated) return;
|
|
|
|
if (!this.list.has(name)) {
|
|
this.list.add(name);
|
|
this.cachedList = undefined;
|
|
}
|
|
},
|
|
removePad(name) {
|
|
if (!this.initiated) return;
|
|
|
|
if (this.list.has(name)) {
|
|
this.list.delete(name);
|
|
this.cachedList = undefined;
|
|
}
|
|
},
|
|
};
|
|
|
|
// initialises the all-knowing data structure
|
|
|
|
/**
|
|
* Returns a Pad Object with the callback
|
|
* @param id A String with the id of the pad
|
|
* @param {Function} callback
|
|
*/
|
|
exports.getPad = async (id, text) => {
|
|
// check if this is a valid padId
|
|
if (!exports.isValidPadId(id)) {
|
|
throw new CustomError(`${id} is not a valid padId`, 'apierror');
|
|
}
|
|
|
|
// check if this is a valid text
|
|
if (text != null) {
|
|
// check if text is a string
|
|
if (typeof text !== 'string') {
|
|
throw new CustomError('text is not a string', 'apierror');
|
|
}
|
|
|
|
// check if text is less than 100k chars
|
|
if (text.length > 100000) {
|
|
throw new CustomError('text must be less than 100k chars', 'apierror');
|
|
}
|
|
}
|
|
|
|
let pad = globalPads.get(id);
|
|
|
|
// return pad if it's already loaded
|
|
if (pad != null) {
|
|
return pad;
|
|
}
|
|
|
|
// try to load pad
|
|
pad = new Pad(id);
|
|
|
|
// initialize the pad
|
|
await pad.init(text);
|
|
hooks.callAll('padLoad', {pad});
|
|
globalPads.set(id, pad);
|
|
padList.addPad(id);
|
|
|
|
return pad;
|
|
};
|
|
|
|
exports.listAllPads = async () => {
|
|
const padIDs = await padList.getPads();
|
|
|
|
return {padIDs};
|
|
};
|
|
|
|
// checks if a pad exists
|
|
exports.doesPadExist = async (padId) => {
|
|
const value = await db.get(`pad:${padId}`);
|
|
|
|
return (value != null && value.atext);
|
|
};
|
|
|
|
// alias for backwards compatibility
|
|
exports.doesPadExists = exports.doesPadExist;
|
|
|
|
/**
|
|
* An array of padId transformations. These represent changes in pad name policy over
|
|
* time, and allow us to "play back" these changes so legacy padIds can be found.
|
|
*/
|
|
const padIdTransforms = [
|
|
[/\s+/g, '_'],
|
|
[/:+/g, '_'],
|
|
];
|
|
|
|
// returns a sanitized padId, respecting legacy pad id formats
|
|
exports.sanitizePadId = async (padId) => {
|
|
for (let i = 0, n = padIdTransforms.length; i < n; ++i) {
|
|
const exists = await exports.doesPadExist(padId);
|
|
|
|
if (exists) {
|
|
return padId;
|
|
}
|
|
|
|
const [from, to] = padIdTransforms[i];
|
|
|
|
padId = padId.replace(from, to);
|
|
}
|
|
|
|
// we're out of possible transformations, so just return it
|
|
return padId;
|
|
};
|
|
|
|
exports.isValidPadId = (padId) => /^(g.[a-zA-Z0-9]{16}\$)?[^$]{1,50}$/.test(padId);
|
|
|
|
/**
|
|
* Removes the pad from database and unloads it.
|
|
*/
|
|
exports.removePad = async (padId) => {
|
|
const p = db.remove(`pad:${padId}`);
|
|
exports.unloadPad(padId);
|
|
padList.removePad(padId);
|
|
await p;
|
|
};
|
|
|
|
// removes a pad from the cache
|
|
exports.unloadPad = (padId) => {
|
|
globalPads.remove(padId);
|
|
};
|