2024-03-22 18:01:37 +01:00
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
/* prettier-ignore */
|
|
|
|
|
|
|
|
/* auto-generated by NAPI-RS */
|
|
|
|
|
|
|
|
const { existsSync, readFileSync } = require('fs')
|
|
|
|
const { join } = require('path')
|
|
|
|
|
|
|
|
const { platform, arch } = process
|
|
|
|
|
|
|
|
let nativeBinding = null
|
|
|
|
let localFileExisted = false
|
|
|
|
let loadError = null
|
|
|
|
|
|
|
|
function isMusl() {
|
|
|
|
// For Node 10
|
|
|
|
if (!process.report || typeof process.report.getReport !== 'function') {
|
|
|
|
try {
|
|
|
|
const lddPath = require('child_process').execSync('which ldd').toString().trim()
|
|
|
|
return readFileSync(lddPath, 'utf8').includes('musl')
|
|
|
|
} catch (e) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const { glibcVersionRuntime } = process.report.getReport().header
|
|
|
|
return !glibcVersionRuntime
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (platform) {
|
|
|
|
case 'android':
|
|
|
|
switch (arch) {
|
|
|
|
case 'arm64':
|
|
|
|
localFileExisted = existsSync(join(__dirname, 'backend-rs.android-arm64.node'))
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.android-arm64.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-android-arm64')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'arm':
|
|
|
|
localFileExisted = existsSync(join(__dirname, 'backend-rs.android-arm-eabi.node'))
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.android-arm-eabi.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-android-arm-eabi')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
throw new Error(`Unsupported architecture on Android ${arch}`)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'win32':
|
|
|
|
switch (arch) {
|
|
|
|
case 'x64':
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.win32-x64-msvc.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.win32-x64-msvc.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-win32-x64-msvc')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'ia32':
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.win32-ia32-msvc.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.win32-ia32-msvc.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-win32-ia32-msvc')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'arm64':
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.win32-arm64-msvc.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.win32-arm64-msvc.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-win32-arm64-msvc')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
throw new Error(`Unsupported architecture on Windows: ${arch}`)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'darwin':
|
|
|
|
localFileExisted = existsSync(join(__dirname, 'backend-rs.darwin-universal.node'))
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.darwin-universal.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-darwin-universal')
|
|
|
|
}
|
|
|
|
break
|
|
|
|
} catch {}
|
|
|
|
switch (arch) {
|
|
|
|
case 'x64':
|
|
|
|
localFileExisted = existsSync(join(__dirname, 'backend-rs.darwin-x64.node'))
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.darwin-x64.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-darwin-x64')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'arm64':
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.darwin-arm64.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.darwin-arm64.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-darwin-arm64')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
throw new Error(`Unsupported architecture on macOS: ${arch}`)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'freebsd':
|
|
|
|
if (arch !== 'x64') {
|
|
|
|
throw new Error(`Unsupported architecture on FreeBSD: ${arch}`)
|
|
|
|
}
|
|
|
|
localFileExisted = existsSync(join(__dirname, 'backend-rs.freebsd-x64.node'))
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.freebsd-x64.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-freebsd-x64')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'linux':
|
|
|
|
switch (arch) {
|
|
|
|
case 'x64':
|
|
|
|
if (isMusl()) {
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-x64-musl.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-x64-musl.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-x64-musl')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-x64-gnu.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-x64-gnu.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-x64-gnu')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'arm64':
|
|
|
|
if (isMusl()) {
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-arm64-musl.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-arm64-musl.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-arm64-musl')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-arm64-gnu.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-arm64-gnu.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-arm64-gnu')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'arm':
|
2024-04-11 20:24:13 +02:00
|
|
|
if (isMusl()) {
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-arm-musleabihf.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-arm-musleabihf.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-arm-musleabihf')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-arm-gnueabihf.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-arm-gnueabihf.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-arm-gnueabihf')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
2024-03-22 18:01:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'riscv64':
|
|
|
|
if (isMusl()) {
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-riscv64-musl.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-riscv64-musl.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-riscv64-musl')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-riscv64-gnu.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-riscv64-gnu.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-riscv64-gnu')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 's390x':
|
|
|
|
localFileExisted = existsSync(
|
|
|
|
join(__dirname, 'backend-rs.linux-s390x-gnu.node')
|
|
|
|
)
|
|
|
|
try {
|
|
|
|
if (localFileExisted) {
|
|
|
|
nativeBinding = require('./backend-rs.linux-s390x-gnu.node')
|
|
|
|
} else {
|
|
|
|
nativeBinding = require('backend-rs-linux-s390x-gnu')
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
loadError = e
|
|
|
|
}
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
throw new Error(`Unsupported architecture on Linux: ${arch}`)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!nativeBinding) {
|
|
|
|
if (loadError) {
|
|
|
|
throw loadError
|
|
|
|
}
|
|
|
|
throw new Error(`Failed to load native binding`)
|
|
|
|
}
|
|
|
|
|
2024-05-17 10:59:45 +02:00
|
|
|
const { SECOND, MINUTE, HOUR, DAY, USER_ONLINE_THRESHOLD, USER_ACTIVE_THRESHOLD, FILE_TYPE_BROWSERSAFE, loadEnv, loadConfig, stringToAcct, acctToString, initializeRustLogger, showServerInfo, isBlockedServer, isSilencedServer, isAllowedServer, checkWordMute, getFullApAccount, isSelfHost, isSameOrigin, extractHost, toPuny, isUnicodeEmoji, sqlLikeEscape, safeForSql, formatMilliseconds, getImageSizeFromUrl, getNoteSummary, isSafeUrl, latestVersion, toMastodonId, fromMastodonId, fetchMeta, metaToPugArgs, nyaify, hashPassword, verifyPassword, isOldPasswordAlgorithm, decodeReaction, countReactions, toDbReaction, removeOldAttestationChallenges, cpuInfo, cpuUsage, memoryUsage, storageUsage, AntennaSrcEnum, DriveFileUsageHintEnum, MutedNoteReasonEnum, NoteVisibilityEnum, NotificationTypeEnum, PageVisibilityEnum, PollNotevisibilityEnum, RelayStatusEnum, UserEmojimodpermEnum, UserProfileFfvisibilityEnum, UserProfileMutingnotificationtypesEnum, updateAntennaOnCreateNote, fetchNodeinfo, nodeinfo_2_1, nodeinfo_2_0, Protocol, Inbound, Outbound, watchNote, unwatchNote, PushNotificationKind, sendPushNotification, publishToChannelStream, ChatEvent, publishToChatStream, ChatIndexEvent, publishToChatIndexStream, publishToBroadcastStream, publishToGroupChatStream, publishToModerationStream, getTimestamp, genId, genIdAt, generateSecureRandomString, generateUserToken } = nativeBinding
|
2024-03-22 18:01:37 +01:00
|
|
|
|
2024-04-25 07:49:32 +02:00
|
|
|
module.exports.SECOND = SECOND
|
|
|
|
module.exports.MINUTE = MINUTE
|
|
|
|
module.exports.HOUR = HOUR
|
|
|
|
module.exports.DAY = DAY
|
|
|
|
module.exports.USER_ONLINE_THRESHOLD = USER_ONLINE_THRESHOLD
|
|
|
|
module.exports.USER_ACTIVE_THRESHOLD = USER_ACTIVE_THRESHOLD
|
|
|
|
module.exports.FILE_TYPE_BROWSERSAFE = FILE_TYPE_BROWSERSAFE
|
2024-04-19 19:07:08 +02:00
|
|
|
module.exports.loadEnv = loadEnv
|
|
|
|
module.exports.loadConfig = loadConfig
|
2024-04-11 23:10:11 +02:00
|
|
|
module.exports.stringToAcct = stringToAcct
|
|
|
|
module.exports.acctToString = acctToString
|
2024-05-15 21:57:48 +02:00
|
|
|
module.exports.initializeRustLogger = initializeRustLogger
|
2024-05-17 00:32:02 +02:00
|
|
|
module.exports.showServerInfo = showServerInfo
|
2024-04-22 01:31:28 +02:00
|
|
|
module.exports.isBlockedServer = isBlockedServer
|
|
|
|
module.exports.isSilencedServer = isSilencedServer
|
|
|
|
module.exports.isAllowedServer = isAllowedServer
|
2024-04-12 08:43:17 +02:00
|
|
|
module.exports.checkWordMute = checkWordMute
|
2024-04-12 10:13:57 +02:00
|
|
|
module.exports.getFullApAccount = getFullApAccount
|
|
|
|
module.exports.isSelfHost = isSelfHost
|
|
|
|
module.exports.isSameOrigin = isSameOrigin
|
|
|
|
module.exports.extractHost = extractHost
|
|
|
|
module.exports.toPuny = toPuny
|
2024-04-14 22:13:35 +02:00
|
|
|
module.exports.isUnicodeEmoji = isUnicodeEmoji
|
2024-04-14 13:29:44 +02:00
|
|
|
module.exports.sqlLikeEscape = sqlLikeEscape
|
|
|
|
module.exports.safeForSql = safeForSql
|
2024-04-14 07:53:25 +02:00
|
|
|
module.exports.formatMilliseconds = formatMilliseconds
|
2024-04-25 12:06:16 +02:00
|
|
|
module.exports.getImageSizeFromUrl = getImageSizeFromUrl
|
2024-04-17 22:02:00 +02:00
|
|
|
module.exports.getNoteSummary = getNoteSummary
|
2024-05-06 17:56:37 +02:00
|
|
|
module.exports.isSafeUrl = isSafeUrl
|
2024-05-04 07:44:20 +02:00
|
|
|
module.exports.latestVersion = latestVersion
|
2024-04-12 12:05:14 +02:00
|
|
|
module.exports.toMastodonId = toMastodonId
|
|
|
|
module.exports.fromMastodonId = fromMastodonId
|
2024-04-14 13:16:22 +02:00
|
|
|
module.exports.fetchMeta = fetchMeta
|
|
|
|
module.exports.metaToPugArgs = metaToPugArgs
|
2024-04-11 22:35:18 +02:00
|
|
|
module.exports.nyaify = nyaify
|
2024-04-14 07:41:01 +02:00
|
|
|
module.exports.hashPassword = hashPassword
|
|
|
|
module.exports.verifyPassword = verifyPassword
|
|
|
|
module.exports.isOldPasswordAlgorithm = isOldPasswordAlgorithm
|
2024-04-15 03:02:44 +02:00
|
|
|
module.exports.decodeReaction = decodeReaction
|
|
|
|
module.exports.countReactions = countReactions
|
|
|
|
module.exports.toDbReaction = toDbReaction
|
2024-04-23 23:39:40 +02:00
|
|
|
module.exports.removeOldAttestationChallenges = removeOldAttestationChallenges
|
2024-05-17 00:32:02 +02:00
|
|
|
module.exports.cpuInfo = cpuInfo
|
|
|
|
module.exports.cpuUsage = cpuUsage
|
|
|
|
module.exports.memoryUsage = memoryUsage
|
|
|
|
module.exports.storageUsage = storageUsage
|
2024-04-06 22:00:23 +02:00
|
|
|
module.exports.AntennaSrcEnum = AntennaSrcEnum
|
2024-04-21 03:45:47 +02:00
|
|
|
module.exports.DriveFileUsageHintEnum = DriveFileUsageHintEnum
|
2024-04-06 22:00:23 +02:00
|
|
|
module.exports.MutedNoteReasonEnum = MutedNoteReasonEnum
|
|
|
|
module.exports.NoteVisibilityEnum = NoteVisibilityEnum
|
|
|
|
module.exports.NotificationTypeEnum = NotificationTypeEnum
|
|
|
|
module.exports.PageVisibilityEnum = PageVisibilityEnum
|
|
|
|
module.exports.PollNotevisibilityEnum = PollNotevisibilityEnum
|
|
|
|
module.exports.RelayStatusEnum = RelayStatusEnum
|
|
|
|
module.exports.UserEmojimodpermEnum = UserEmojimodpermEnum
|
|
|
|
module.exports.UserProfileFfvisibilityEnum = UserProfileFfvisibilityEnum
|
|
|
|
module.exports.UserProfileMutingnotificationtypesEnum = UserProfileMutingnotificationtypesEnum
|
2024-05-17 10:59:45 +02:00
|
|
|
module.exports.updateAntennaOnCreateNote = updateAntennaOnCreateNote
|
2024-05-06 01:12:21 +02:00
|
|
|
module.exports.fetchNodeinfo = fetchNodeinfo
|
2024-05-05 19:20:39 +02:00
|
|
|
module.exports.nodeinfo_2_1 = nodeinfo_2_1
|
|
|
|
module.exports.nodeinfo_2_0 = nodeinfo_2_0
|
2024-05-06 01:12:21 +02:00
|
|
|
module.exports.Protocol = Protocol
|
|
|
|
module.exports.Inbound = Inbound
|
|
|
|
module.exports.Outbound = Outbound
|
2024-04-24 06:16:25 +02:00
|
|
|
module.exports.watchNote = watchNote
|
|
|
|
module.exports.unwatchNote = unwatchNote
|
2024-05-16 00:19:58 +02:00
|
|
|
module.exports.PushNotificationKind = PushNotificationKind
|
|
|
|
module.exports.sendPushNotification = sendPushNotification
|
2024-04-25 23:16:51 +02:00
|
|
|
module.exports.publishToChannelStream = publishToChannelStream
|
2024-04-23 21:13:29 +02:00
|
|
|
module.exports.ChatEvent = ChatEvent
|
|
|
|
module.exports.publishToChatStream = publishToChatStream
|
2024-04-26 06:11:11 +02:00
|
|
|
module.exports.ChatIndexEvent = ChatIndexEvent
|
|
|
|
module.exports.publishToChatIndexStream = publishToChatIndexStream
|
2024-04-26 06:30:13 +02:00
|
|
|
module.exports.publishToBroadcastStream = publishToBroadcastStream
|
2024-04-27 01:35:01 +02:00
|
|
|
module.exports.publishToGroupChatStream = publishToGroupChatStream
|
2024-04-25 22:44:37 +02:00
|
|
|
module.exports.publishToModerationStream = publishToModerationStream
|
2024-04-11 21:48:01 +02:00
|
|
|
module.exports.getTimestamp = getTimestamp
|
|
|
|
module.exports.genId = genId
|
2024-04-24 00:02:06 +02:00
|
|
|
module.exports.genIdAt = genIdAt
|
2024-05-09 14:49:56 +02:00
|
|
|
module.exports.generateSecureRandomString = generateSecureRandomString
|
|
|
|
module.exports.generateUserToken = generateUserToken
|