Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Button to invalidate all existing session #1920

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
8 changes: 8 additions & 0 deletions api/resolvers/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -898,6 +898,14 @@ export default {

await models.user.update({ where: { id: me.id }, data: { hideWelcomeBanner: true } })
return true
},
invalidateSessions: async (parent, args, { me, models }) => {
if (!me) {
throw new GqlAuthenticationError()
}

await models.user.update({ where: { id: me.id }, data: { sessionRev: { increment: 1 } } })
return true
}
},

Expand Down
1 change: 1 addition & 0 deletions api/typeDefs/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export default gql`
generateApiKey(id: ID!): String
deleteApiKey(id: ID!): User
disableFreebies: Boolean
invalidateSessions: Boolean
}

type User {
Expand Down
6 changes: 6 additions & 0 deletions pages/api/auth/[...nextauth].js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ function getCallbacks (req, res) {
// token won't have an id on it for new logins, we add it
// note: token is what's kept in the jwt
token.id = Number(user.id)
token.sessionRev = user.sessionRev || 0

// if referrer exists, set on user
// isNewUser doesn't work for nostr/lightning auth because we create the user before nextauth can
Expand Down Expand Up @@ -143,6 +144,11 @@ function getCallbacks (req, res) {
// and returns a new object session that's returned whenever get|use[Server]Session is called
session.user.id = token.id

// invalidate this session if session revision mismatch
session.user.sessionRev = token.sessionRev || 0 // if no sessionRev, set to 0, the user will have one after login
const sessionRev = await prisma.user.findUnique({ where: { id: session.user.id }, select: { sessionRev: true } })
if (session.user.sessionRev !== sessionRev?.sessionRev) return {}

return session
}
}
Expand Down
27 changes: 27 additions & 0 deletions pages/settings/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,7 @@ function AuthMethods ({ methods, apiKeyEnabled }) {
)
}
})}
<InvalidateSessions />
<ApiKey apiKey={methods.apiKey} enabled={apiKeyEnabled} />
</>
)
Expand Down Expand Up @@ -1188,3 +1189,29 @@ const TipRandomField = () => {
</>
)
}

const InvalidateSessions = () => {
const showModal = useShowModal()
const router = useRouter()

const [invalidateSessions] = useMutation(gql`
mutation invalidateSessions {
invalidateSessions
}`
)

return (
<Button
variant='danger'
onClick={async () => {
const { data } = await invalidateSessions()
if (data.invalidateSessions) {
// TODO: Invalidate Sessions Obstacle
showModal(onClose => (router.push('/')))
}
}}
>
Invalidate Sessions
</Button>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "users" ADD COLUMN "sessionRev" INTEGER NOT NULL DEFAULT 0;
1 change: 1 addition & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ model User {
mcredits BigInt @default(0)
receiveCreditsBelowSats Int @default(10)
sendCreditsBelowSats Int @default(10)
sessionRev Int @default(0)
muters Mute[] @relation("muter")
muteds Mute[] @relation("muted")
ArcOut Arc[] @relation("fromUser")
Expand Down