mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
* wip: initial sqlite bootstrap * wip: switch to sqlite3 as default db type * wip: boilerplate data * fix(auth): case sensitive register and login * fix(auth): refactor username validations * fix(auth): allow changing username to both username and email: * fix(auth): lock middleware for recovery log in * fix(domain-core): specs for invalid types * fix(auth): lock middleware specs * fix(auth): typeorm code arrangements * fix: running e2e on both mysql and sqlite in ci
99 lines
3.7 KiB
TypeScript
99 lines
3.7 KiB
TypeScript
import 'reflect-metadata'
|
|
|
|
import 'newrelic'
|
|
|
|
import { Logger } from 'winston'
|
|
import * as dayjs from 'dayjs'
|
|
import * as utc from 'dayjs/plugin/utc'
|
|
|
|
import { ContainerConfigLoader } from '../src/Bootstrap/Container'
|
|
import TYPES from '../src/Bootstrap/Types'
|
|
import { Env } from '../src/Bootstrap/Env'
|
|
import { DomainEventPublisherInterface } from '@standardnotes/domain-events'
|
|
import { DomainEventFactoryInterface } from '../src/Domain/Event/DomainEventFactoryInterface'
|
|
import { SettingRepositoryInterface } from '../src/Domain/Setting/SettingRepositoryInterface'
|
|
import { MuteFailedBackupsEmailsOption, SettingName } from '@standardnotes/settings'
|
|
import { RoleServiceInterface } from '../src/Domain/Role/RoleServiceInterface'
|
|
import { PermissionName } from '@standardnotes/features'
|
|
import { UserRepositoryInterface } from '../src/Domain/User/UserRepositoryInterface'
|
|
import { Email } from '@standardnotes/domain-core'
|
|
|
|
const inputArgs = process.argv.slice(2)
|
|
const backupEmail = inputArgs[0]
|
|
|
|
const requestBackups = async (
|
|
userRepository: UserRepositoryInterface,
|
|
settingRepository: SettingRepositoryInterface,
|
|
roleService: RoleServiceInterface,
|
|
domainEventFactory: DomainEventFactoryInterface,
|
|
domainEventPublisher: DomainEventPublisherInterface,
|
|
): Promise<void> => {
|
|
const permissionName = PermissionName.DailyEmailBackup
|
|
const muteEmailsSettingName = SettingName.NAMES.MuteFailedBackupsEmails
|
|
const muteEmailsSettingValue = MuteFailedBackupsEmailsOption.Muted
|
|
|
|
const emailOrError = Email.create(backupEmail)
|
|
if (emailOrError.isFailed()) {
|
|
throw new Error('Could not trigger email backup for user - missing email parameter')
|
|
}
|
|
const email = emailOrError.getValue()
|
|
|
|
const user = await userRepository.findOneByUsernameOrEmail(email)
|
|
if (user === null) {
|
|
throw new Error(`Could not find user with email: ${backupEmail}`)
|
|
}
|
|
|
|
const userIsPermittedForEmailBackups = await roleService.userHasPermission(user.uuid, permissionName)
|
|
if (!userIsPermittedForEmailBackups) {
|
|
throw new Error(`User ${backupEmail} is not permitted for email backups`)
|
|
}
|
|
|
|
let userHasEmailsMuted = false
|
|
const emailsMutedSetting = await settingRepository.findOneByNameAndUserUuid(muteEmailsSettingName, user.uuid)
|
|
if (emailsMutedSetting !== null && emailsMutedSetting.value !== null) {
|
|
userHasEmailsMuted = emailsMutedSetting.value === muteEmailsSettingValue
|
|
}
|
|
|
|
await domainEventPublisher.publish(
|
|
domainEventFactory.createEmailBackupRequestedEvent(
|
|
user.uuid,
|
|
emailsMutedSetting?.uuid as string,
|
|
userHasEmailsMuted,
|
|
),
|
|
)
|
|
|
|
return
|
|
}
|
|
|
|
const container = new ContainerConfigLoader()
|
|
void container.load().then((container) => {
|
|
dayjs.extend(utc)
|
|
|
|
const env: Env = new Env()
|
|
env.load()
|
|
|
|
const logger: Logger = container.get(TYPES.Logger)
|
|
|
|
logger.info(`Starting email backup requesting for ${backupEmail} ...`)
|
|
|
|
const settingRepository: SettingRepositoryInterface = container.get(TYPES.SettingRepository)
|
|
const userRepository: UserRepositoryInterface = container.get(TYPES.UserRepository)
|
|
const roleService: RoleServiceInterface = container.get(TYPES.RoleService)
|
|
const domainEventFactory: DomainEventFactoryInterface = container.get(TYPES.DomainEventFactory)
|
|
const domainEventPublisher: DomainEventPublisherInterface = container.get(TYPES.DomainEventPublisher)
|
|
|
|
Promise.resolve(
|
|
requestBackups(userRepository, settingRepository, roleService, domainEventFactory, domainEventPublisher),
|
|
)
|
|
.then(() => {
|
|
logger.info(`Email backup requesting complete for ${backupEmail}`)
|
|
|
|
process.exit(0)
|
|
})
|
|
.catch((error) => {
|
|
logger.error(`Could not finish email backup requesting for ${backupEmail}: ${error.message}`)
|
|
|
|
process.exit(1)
|
|
})
|
|
})
|