1
0
Fork 0

Refactor email enabled function

This commit is contained in:
Chocobozzz 2020-02-17 10:27:00 +01:00
parent 45f1bd72a0
commit 4c1c170934
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
11 changed files with 37 additions and 47 deletions

View File

@ -12,12 +12,10 @@
display: grid !important;
grid-template-columns: 1fr auto;
grid-template-rows: 1fr auto / 1fr auto;
grid-template-areas: "name buttons"
"lower buttons";
grid-template-areas: "name buttons" "lower buttons";
@media screen and (max-width: #{map-get($grid-breakpoints, lg)}) {
grid-template-areas: "name name"
"lower buttons";
grid-template-areas: "name name" "lower buttons";
}
}
@ -53,4 +51,4 @@
my-subscribe-button {
height: min-content;
}
}
}

View File

@ -1,17 +1,9 @@
import {
Component,
OnInit,
OnDestroy,
QueryList,
ViewChild,
ElementRef
} from '@angular/core'
import { Router, Params, ActivatedRoute } from '@angular/router'
import { Component, ElementRef, OnDestroy, OnInit, QueryList, ViewChild } from '@angular/core'
import { ActivatedRoute, Params, Router } from '@angular/router'
import { AuthService, ServerService } from '@app/core'
import { first, tap } from 'rxjs/operators'
import { ListKeyManager } from '@angular/cdk/a11y'
import { UP_ARROW, DOWN_ARROW, ENTER } from '@angular/cdk/keycodes'
import { SuggestionComponent, Result } from './suggestion.component'
import { Result, SuggestionComponent } from './suggestion.component'
import { of } from 'rxjs'
import { ServerConfig } from '@shared/models'
@ -145,13 +137,13 @@ export class SearchTypeaheadComponent implements OnInit, OnDestroy {
handleKeyUp (event: KeyboardEvent) {
event.stopImmediatePropagation()
if (!this.keyboardEventsManager) return
switch (event.key) {
case "ArrowDown":
case "ArrowUp":
case 'ArrowDown':
case 'ArrowUp':
this.keyboardEventsManager.onKeydown(event)
break
case "Enter":
case 'Enter':
this.newSearch = false
this.doSearch()
break

View File

@ -103,8 +103,8 @@ $variables: (
$zindex: (
header : 1000,
/* header context */
headerLeft : 10,
/* header context */
headerLeft : 10,
menu : 11000,
dropdown : 12000,
loadbar : 13000,

View File

@ -11,10 +11,9 @@ import { ClientHtml } from '../../lib/client-html'
import { auditLoggerFactory, CustomConfigAuditView, getAuditIdFromRes } from '../../helpers/audit-logger'
import { remove, writeJSON } from 'fs-extra'
import { getServerCommit } from '../../helpers/utils'
import { Emailer } from '../../lib/emailer'
import validator from 'validator'
import { objectConverter } from '../../helpers/core-utils'
import { CONFIG, reloadConfig } from '../../initializers/config'
import { CONFIG, isEmailEnabled, reloadConfig } from '../../initializers/config'
import { PluginManager } from '../../lib/plugins/plugin-manager'
import { getThemeOrDefault } from '../../lib/plugins/theme-utils'
import { Hooks } from '@server/lib/plugins/hooks'
@ -87,7 +86,7 @@ async function getConfig (req: express.Request, res: express.Response) {
default: defaultTheme
},
email: {
enabled: Emailer.isEnabled()
enabled: isEmailEnabled()
},
contactForm: {
enabled: CONFIG.CONTACT_FORM.ENABLED

View File

@ -1,15 +1,15 @@
import * as cors from 'cors'
import * as express from 'express'
import {
CONSTRAINTS_FIELDS,
DEFAULT_THEME_NAME,
HLS_STREAMING_PLAYLIST_DIRECTORY,
PEERTUBE_VERSION,
ROUTE_CACHE_LIFETIME,
STATIC_DOWNLOAD_PATHS,
STATIC_MAX_AGE,
STATIC_PATHS,
WEBSERVER,
CONSTRAINTS_FIELDS,
DEFAULT_THEME_NAME
WEBSERVER
} from '../initializers/constants'
import { cacheRoute } from '../middlewares/cache'
import { asyncMiddleware, videosDownloadValidator } from '../middlewares'
@ -19,8 +19,7 @@ import { VideoCommentModel } from '../models/video/video-comment'
import { HttpNodeinfoDiasporaSoftwareNsSchema20 } from '../../shared/models/nodeinfo'
import { join } from 'path'
import { root } from '../helpers/core-utils'
import { CONFIG } from '../initializers/config'
import { Emailer } from '../lib/emailer'
import { CONFIG, isEmailEnabled } from '../initializers/config'
import { getPreview, getVideoCaption } from './lazy-static'
import { VideoStreamingPlaylistType } from '@shared/models/videos/video-streaming-playlist.type'
import { MVideoFile, MVideoFullLight } from '@server/typings/models'
@ -249,7 +248,7 @@ async function generateNodeinfo (req: express.Request, res: express.Response) {
default: getThemeOrDefault(CONFIG.THEME.DEFAULT, DEFAULT_THEME_NAME)
},
email: {
enabled: Emailer.isEnabled()
enabled: isEmailEnabled()
},
contactForm: {
enabled: CONFIG.CONTACT_FORM.ENABLED

View File

@ -3,7 +3,7 @@ import { UserRole } from '../../../shared'
import { CONSTRAINTS_FIELDS, NSFW_POLICY_TYPES } from '../../initializers/constants'
import { exists, isArray, isBooleanValid, isFileValid } from './misc'
import { values } from 'lodash'
import { CONFIG } from '../../initializers/config'
import { isEmailEnabled } from '../../initializers/config'
const USERS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.USERS
@ -13,9 +13,8 @@ function isUserPasswordValid (value: string) {
function isUserPasswordValidOrEmpty (value: string) {
// Empty password is only possible if emailing is enabled.
if (value === '') {
return !!CONFIG.SMTP.HOSTNAME && !!CONFIG.SMTP.PORT
}
if (value === '') return isEmailEnabled()
return isUserPasswordValid(value)
}

View File

@ -4,13 +4,12 @@ import { UserModel } from '../models/account/user'
import { ApplicationModel } from '../models/application/application'
import { OAuthClientModel } from '../models/oauth/oauth-client'
import { URL } from 'url'
import { CONFIG } from './config'
import { CONFIG, isEmailEnabled } from './config'
import { logger } from '../helpers/logger'
import { getServerActor } from '../helpers/utils'
import { RecentlyAddedStrategy } from '../../shared/models/redundancy'
import { isArray } from '../helpers/custom-validators/misc'
import { uniq } from 'lodash'
import { Emailer } from '../lib/emailer'
import { WEBSERVER } from './constants'
async function checkActivityPubUrls () {
@ -41,7 +40,7 @@ function checkConfig () {
}
// Email verification
if (!Emailer.isEnabled()) {
if (!isEmailEnabled()) {
if (CONFIG.SIGNUP.ENABLED && CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION) {
return 'Emailer is disabled but you require signup email verification.'
}

View File

@ -284,11 +284,16 @@ function registerConfigChangedHandler (fun: Function) {
configChangedHandlers.push(fun)
}
function isEmailEnabled () {
return !!CONFIG.SMTP.HOSTNAME && !!CONFIG.SMTP.PORT
}
// ---------------------------------------------------------------------------
export {
CONFIG,
registerConfigChangedHandler
registerConfigChangedHandler,
isEmailEnabled
}
// ---------------------------------------------------------------------------

View File

@ -1,7 +1,7 @@
import { createTransport, Transporter } from 'nodemailer'
import { isTestInstance } from '../helpers/core-utils'
import { bunyanLogger, logger } from '../helpers/logger'
import { CONFIG } from '../initializers/config'
import { CONFIG, isEmailEnabled } from '../initializers/config'
import { JobQueue } from './job-queue'
import { EmailPayload } from './job-queue/handlers/email'
import { readFileSync } from 'fs-extra'
@ -40,7 +40,7 @@ class Emailer {
if (this.initialized === true) return
this.initialized = true
if (Emailer.isEnabled()) {
if (isEmailEnabled) {
logger.info('Using %s:%s as SMTP server.', CONFIG.SMTP.HOSTNAME, CONFIG.SMTP.PORT)
let tls
@ -459,7 +459,7 @@ class Emailer {
}
async sendMail (options: EmailPayload) {
if (!Emailer.isEnabled()) {
if (!isEmailEnabled()) {
throw new Error('Cannot send mail because SMTP is not configured.')
}

View File

@ -3,10 +3,10 @@ import { body } from 'express-validator'
import { isUserNSFWPolicyValid, isUserVideoQuotaDailyValid, isUserVideoQuotaValid } from '../../helpers/custom-validators/users'
import { logger } from '../../helpers/logger'
import { CustomConfig } from '../../../shared/models/server/custom-config.model'
import { Emailer } from '../../lib/emailer'
import { areValidationErrors } from './utils'
import { isThemeNameValid } from '../../helpers/custom-validators/plugins'
import { isThemeRegistered } from '../../lib/plugins/theme-utils'
import { isEmailEnabled } from '@server/initializers/config'
const customConfigUpdateValidator = [
body('instance.name').exists().withMessage('Should have a valid instance name'),
@ -73,7 +73,7 @@ export {
}
function checkInvalidConfigIfEmailDisabled (customConfig: CustomConfig, res: express.Response) {
if (Emailer.isEnabled()) return true
if (isEmailEnabled()) return true
if (customConfig.signup.requiresEmailVerification === true) {
res.status(400)

View File

@ -5,9 +5,8 @@ import { isHostValid, isValidContactBody } from '../../helpers/custom-validators
import { ServerModel } from '../../models/server/server'
import { body } from 'express-validator'
import { isUserDisplayNameValid } from '../../helpers/custom-validators/users'
import { Emailer } from '../../lib/emailer'
import { Redis } from '../../lib/redis'
import { CONFIG } from '../../initializers/config'
import { CONFIG, isEmailEnabled } from '../../initializers/config'
const serverGetValidator = [
body('host').custom(isHostValid).withMessage('Should have a valid host'),
@ -50,7 +49,7 @@ const contactAdministratorValidator = [
.end()
}
if (Emailer.isEnabled() === false) {
if (isEmailEnabled() === false) {
return res
.status(409)
.send({ error: 'Emailer is not enabled on this instance.' })