-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start encapsulating Redis into a service
There's a name collision between the Effect service tag and the IoRedis export; we've decided to alias the latter for the moment, but the collision might become encapsulated. Refs #1834
- Loading branch information
1 parent
42f6830
commit 26b47df
Showing
2 changed files
with
81 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import KeyvRedis from '@keyv/redis' | ||
import { SystemClock } from 'clock-ts' | ||
import { Effect } from 'effect' | ||
import { Context, Effect } from 'effect' | ||
import * as C from 'fp-ts/lib/Console.js' | ||
import { pipe } from 'fp-ts/lib/function.js' | ||
import type { Redis } from 'ioredis' | ||
import type { Redis as IoRedis } from 'ioredis' | ||
import Keyv from 'keyv' | ||
import * as L from 'logger-fp-ts' | ||
import fetch from 'make-fetch-happen' | ||
|
@@ -12,7 +12,11 @@ import { P, match } from 'ts-pattern' | |
import { app } from './app.js' | ||
import { decodeEnv } from './env.js' | ||
|
||
export const expressServer = (redis: Redis) => { | ||
export class Redis extends Context.Tag('Redis')<Redis, IoRedis>() {} | ||
|
||
export const expressServer = Effect.gen(function* () { | ||
const redis = yield* Redis | ||
|
||
const env = decodeEnv(process)() | ||
const loggerEnv: L.LoggerEnv = { | ||
clock: SystemClock, | ||
|
@@ -32,76 +36,74 @@ export const expressServer = (redis: Redis) => { | |
.exhaustive() | ||
const createKeyvStore = () => new KeyvRedis(redis) | ||
|
||
return Effect.succeed( | ||
app({ | ||
...loggerEnv, | ||
allowSiteCrawlers: env.ALLOW_SITE_CRAWLERS, | ||
authorInviteStore: new Keyv({ namespace: 'author-invite', store: createKeyvStore() }), | ||
avatarStore: new Keyv({ namespace: 'avatar-store', store: createKeyvStore() }), | ||
canConnectOrcidProfile: () => true, | ||
canRequestReviews: () => true, | ||
canSeeGatesLogo: true, | ||
canUploadAvatar: () => true, | ||
canUseSearchQueries: () => true, | ||
cloudinaryApi: { cloudName: 'prereview', key: env.CLOUDINARY_API_KEY, secret: env.CLOUDINARY_API_SECRET }, | ||
coarNotifyToken: env.COAR_NOTIFY_TOKEN, | ||
coarNotifyUrl: env.COAR_NOTIFY_URL, | ||
contactEmailAddressStore: new Keyv({ namespace: 'contact-email-address', store: createKeyvStore() }), | ||
environmentLabel: env.ENVIRONMENT_LABEL, | ||
fathomId: env.FATHOM_SITE_ID, | ||
fetch: fetch.defaults({ | ||
cachePath: 'data/cache', | ||
headers: { | ||
'User-Agent': `PREreview (${env.PUBLIC_URL.href}; mailto:[email protected])`, | ||
}, | ||
}), | ||
formStore: new Keyv({ namespace: 'forms', store: createKeyvStore() }), | ||
careerStageStore: new Keyv({ namespace: 'career-stage', store: createKeyvStore() }), | ||
ghostApi: { | ||
key: env.GHOST_API_KEY, | ||
}, | ||
isOpenForRequestsStore: new Keyv({ namespace: 'is-open-for-requests', store: createKeyvStore() }), | ||
isUserBlocked: user => env.BLOCKED_USERS.includes(user), | ||
legacyPrereviewApi: { | ||
app: env.LEGACY_PREREVIEW_API_APP, | ||
key: env.LEGACY_PREREVIEW_API_KEY, | ||
url: env.LEGACY_PREREVIEW_URL, | ||
update: env.LEGACY_PREREVIEW_UPDATE, | ||
}, | ||
languagesStore: new Keyv({ namespace: 'languages', store: createKeyvStore() }), | ||
locationStore: new Keyv({ namespace: 'location', store: createKeyvStore() }), | ||
...sendMailEnv, | ||
orcidApiUrl: env.ORCID_API_URL, | ||
orcidApiToken: env.ORCID_API_READ_PUBLIC_TOKEN, | ||
orcidOauth: { | ||
authorizeUrl: new URL(`${env.ORCID_URL.origin}/oauth/authorize`), | ||
clientId: env.ORCID_CLIENT_ID, | ||
clientSecret: env.ORCID_CLIENT_SECRET, | ||
revokeUrl: new URL(`${env.ORCID_URL.origin}/oauth/revoke`), | ||
tokenUrl: new URL(`${env.ORCID_URL.origin}/oauth/token`), | ||
}, | ||
orcidTokenStore: new Keyv({ namespace: 'orcid-token', store: createKeyvStore() }), | ||
publicUrl: env.PUBLIC_URL, | ||
redis, | ||
researchInterestsStore: new Keyv({ namespace: 'research-interests', store: createKeyvStore() }), | ||
reviewRequestStore: new Keyv({ namespace: 'review-request', store: createKeyvStore() }), | ||
scietyListToken: env.SCIETY_LIST_TOKEN, | ||
secret: env.SECRET, | ||
sessionCookie: 'session', | ||
sessionStore: new Keyv({ namespace: 'sessions', store: createKeyvStore(), ttl: 1000 * 60 * 60 * 24 * 30 }), | ||
slackOauth: { | ||
authorizeUrl: new URL('https://slack.com/oauth/v2/authorize'), | ||
clientId: env.SLACK_CLIENT_ID, | ||
clientSecret: env.SLACK_CLIENT_SECRET, | ||
tokenUrl: new URL('https://slack.com/api/oauth.v2.access'), | ||
return app({ | ||
...loggerEnv, | ||
allowSiteCrawlers: env.ALLOW_SITE_CRAWLERS, | ||
authorInviteStore: new Keyv({ namespace: 'author-invite', store: createKeyvStore() }), | ||
avatarStore: new Keyv({ namespace: 'avatar-store', store: createKeyvStore() }), | ||
canConnectOrcidProfile: () => true, | ||
canRequestReviews: () => true, | ||
canSeeGatesLogo: true, | ||
canUploadAvatar: () => true, | ||
canUseSearchQueries: () => true, | ||
cloudinaryApi: { cloudName: 'prereview', key: env.CLOUDINARY_API_KEY, secret: env.CLOUDINARY_API_SECRET }, | ||
coarNotifyToken: env.COAR_NOTIFY_TOKEN, | ||
coarNotifyUrl: env.COAR_NOTIFY_URL, | ||
contactEmailAddressStore: new Keyv({ namespace: 'contact-email-address', store: createKeyvStore() }), | ||
environmentLabel: env.ENVIRONMENT_LABEL, | ||
fathomId: env.FATHOM_SITE_ID, | ||
fetch: fetch.defaults({ | ||
cachePath: 'data/cache', | ||
headers: { | ||
'User-Agent': `PREreview (${env.PUBLIC_URL.href}; mailto:[email protected])`, | ||
}, | ||
slackApiToken: env.SLACK_API_TOKEN, | ||
slackApiUpdate: env.SLACK_UPDATE, | ||
slackUserIdStore: new Keyv({ namespace: 'slack-user-id', store: createKeyvStore() }), | ||
userOnboardingStore: new Keyv({ namespace: 'user-onboarding', store: createKeyvStore() }), | ||
wasPrereviewRemoved: id => env.REMOVED_PREREVIEWS.includes(id), | ||
zenodoApiKey: env.ZENODO_API_KEY, | ||
zenodoUrl: env.ZENODO_URL, | ||
}), | ||
) | ||
} | ||
formStore: new Keyv({ namespace: 'forms', store: createKeyvStore() }), | ||
careerStageStore: new Keyv({ namespace: 'career-stage', store: createKeyvStore() }), | ||
ghostApi: { | ||
key: env.GHOST_API_KEY, | ||
}, | ||
isOpenForRequestsStore: new Keyv({ namespace: 'is-open-for-requests', store: createKeyvStore() }), | ||
isUserBlocked: user => env.BLOCKED_USERS.includes(user), | ||
legacyPrereviewApi: { | ||
app: env.LEGACY_PREREVIEW_API_APP, | ||
key: env.LEGACY_PREREVIEW_API_KEY, | ||
url: env.LEGACY_PREREVIEW_URL, | ||
update: env.LEGACY_PREREVIEW_UPDATE, | ||
}, | ||
languagesStore: new Keyv({ namespace: 'languages', store: createKeyvStore() }), | ||
locationStore: new Keyv({ namespace: 'location', store: createKeyvStore() }), | ||
...sendMailEnv, | ||
orcidApiUrl: env.ORCID_API_URL, | ||
orcidApiToken: env.ORCID_API_READ_PUBLIC_TOKEN, | ||
orcidOauth: { | ||
authorizeUrl: new URL(`${env.ORCID_URL.origin}/oauth/authorize`), | ||
clientId: env.ORCID_CLIENT_ID, | ||
clientSecret: env.ORCID_CLIENT_SECRET, | ||
revokeUrl: new URL(`${env.ORCID_URL.origin}/oauth/revoke`), | ||
tokenUrl: new URL(`${env.ORCID_URL.origin}/oauth/token`), | ||
}, | ||
orcidTokenStore: new Keyv({ namespace: 'orcid-token', store: createKeyvStore() }), | ||
publicUrl: env.PUBLIC_URL, | ||
redis, | ||
researchInterestsStore: new Keyv({ namespace: 'research-interests', store: createKeyvStore() }), | ||
reviewRequestStore: new Keyv({ namespace: 'review-request', store: createKeyvStore() }), | ||
scietyListToken: env.SCIETY_LIST_TOKEN, | ||
secret: env.SECRET, | ||
sessionCookie: 'session', | ||
sessionStore: new Keyv({ namespace: 'sessions', store: createKeyvStore(), ttl: 1000 * 60 * 60 * 24 * 30 }), | ||
slackOauth: { | ||
authorizeUrl: new URL('https://slack.com/oauth/v2/authorize'), | ||
clientId: env.SLACK_CLIENT_ID, | ||
clientSecret: env.SLACK_CLIENT_SECRET, | ||
tokenUrl: new URL('https://slack.com/api/oauth.v2.access'), | ||
}, | ||
slackApiToken: env.SLACK_API_TOKEN, | ||
slackApiUpdate: env.SLACK_UPDATE, | ||
slackUserIdStore: new Keyv({ namespace: 'slack-user-id', store: createKeyvStore() }), | ||
userOnboardingStore: new Keyv({ namespace: 'user-onboarding', store: createKeyvStore() }), | ||
wasPrereviewRemoved: id => env.REMOVED_PREREVIEWS.includes(id), | ||
zenodoApiKey: env.ZENODO_API_KEY, | ||
zenodoUrl: env.ZENODO_URL, | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters