Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ The following section of the configuration contains information about your Squad
* `rconPassword` - The RCON password of the server.
* `logReaderMode` - `tail` will read from a local log file, `ftp` will read from a remote log file using the FTP protocol, `sftp` will read from a remote log file using the SFTP protocol.
* `logDir` - The folder where your Squad logs are saved. Most likely will be `C:/servers/squad_server/SquadGame/Saved/Logs`.
* `ftp` - FTP configuration for reading logs remotely.
* `sftp` - SFTP configuration for reading logs remotely.
* `ftp` - FTP configuration for reading logs remotely. Only required for `ftp` `logReaderMode`.
* `sftp` - SFTP configuration for reading logs remotely. Only required for `sftp` `logReaderMode`.
* `adminLists` - Sources for identifying an admins on the server, either remote or local.

---
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
},
"type": "module",
"dependencies": {
"squad-server": "1.0.0"
"squad-server": "1.0.0",
"ssh2-sftp-client": "^11.0.0"
},
"devDependencies": {
"eslint": "^7.17.0",
Expand Down
48 changes: 35 additions & 13 deletions squad-server/utils/admin-lists.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
import { fileURLToPath, URL } from 'url';
import { Client as FTPClient } from 'basic-ftp';
import SFTPClient from 'ssh2-sftp-client';
import WritableBuffer from './writable-buffer.js';

import axios from 'axios';
Expand Down Expand Up @@ -40,22 +41,43 @@ export default async function fetchAdminLists(adminLists) {
`Invalid FTP URI format of ${list.source}. The source must be a FTP URI starting with the protocol. Ex: ftp://username:password@host:21/some/file.txt`
);
}
const [loginString, hostPathString] = list.source.substring('ftp://'.length).split('@');
const [user, password] = loginString.split(':').map((v) => decodeURI(v));
const pathStartIndex = hostPathString.indexOf('/');
const remoteFilePath =
pathStartIndex === -1 ? '/' : hostPathString.substring(pathStartIndex);
const [host, port = 21] = hostPathString
.substring(0, pathStartIndex === -1 ? hostPathString.length : pathStartIndex)
.split(':');

const buffer = new WritableBuffer();
const url = new URL(list.source);
const ftpClient = new FTPClient();
await ftpClient.access({ host, port, user, password });
await ftpClient.downloadTo(buffer, remoteFilePath);
await ftpClient.access({
host: url.hostname,
port: url.port || '21',
user: url.username,
password: url.password
});
const buffer = new WritableBuffer();
await ftpClient.downloadTo(buffer, url.pathname);
data = buffer.toString('utf8');
break;
}
case 'sftp': {
// ex url: sftp//<user>:<password>@<host>:<port>/<url-path>
if (!list.source.startsWith('sftp://')) {
throw new Error(
`Invalid SFTP URI format of ${list.source}. The source must be a SFTP URI starting with the protocol. Ex: sftp://username:password@host:22/some/file.txt`
);
}
const url = new URL(list.source);
const sftpClient = new SFTPClient();
await sftpClient.connect({
host: url.hostname,
port: url.port || '22',
username: url.username,
password: url.password
});
try {
const buffer = new WritableBuffer();
await sftpClient.get(url.pathname, buffer);
data = buffer.toString('utf8');
} finally {
sftpClient.end();
}
break;
}
default:
throw new Error(`Unsupported AdminList type:${list.type}`);
}
Expand Down