!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/local/lib/node_modules/strapi/node_modules/strapi-database/lib/validation/   drwxr-xr-x
Free 13.16 GB of 57.97 GB (22.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     check-duplicated-table-names.js (1.57 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'use strict';

const _ = require('lodash');

const createErrorMessage = (
  modelA,
  modelB
) => `Duplicated collection name: \`${modelA.model.collectionName}\`.
The same collection name can't be used for two different models.
First found in ${modelA.origin} \`${modelA.apiOrPluginName}\`, model \`${modelA.modelName}\`.
Second found in ${modelB.origin} \`${modelB.apiOrPluginName}\`, model \`${modelB.modelName}\`.`;

// Check if all collection names are unique
const checkDuplicatedTableNames = ({ strapi }) => {
  const modelsWithInfo = [];
  _.forIn(strapi.admin.models, (model, modelName) => {
    modelsWithInfo.push({
      origin: 'Strapi internal',
      model,
      apiOrPluginName: 'admin',
      modelName,
    });
  });

  _.forIn(strapi.api, (api, apiName) => {
    _.forIn(api.models, (model, modelName) => {
      modelsWithInfo.push({
        origin: 'API',
        model,
        apiOrPluginName: apiName,
        modelName,
      });
    });
  });

  _.forIn(strapi.plugins, (plugin, pluginName) => {
    _.forIn(plugin.models, (model, modelName) => {
      modelsWithInfo.push({
        origin: 'Plugin',
        model,
        apiOrPluginName: pluginName,
        modelName,
      });
    });
  });

  modelsWithInfo.forEach(modelA => {
    const similarModelFound = modelsWithInfo.find(
      modelB =>
        modelB.model.collectionName === modelA.model.collectionName &&
        modelB.model.uid !== modelA.model.uid
    );

    if (similarModelFound) {
      throw new Error(createErrorMessage(modelA, similarModelFound));
    }
  });
};

module.exports = checkDuplicatedTableNames;

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0041 ]--