@tozielinski/next-upstash-nonce 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +19 -0
- package/dist/index.d.ts +53 -0
- package/dist/index.d.ts.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.3.1](https://github.com/tozielinski/next-upstash-nonce/compare/v1.3.0...v1.3.1) (2025-11-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* enable type generation ([6df83aa](https://github.com/tozielinski/next-upstash-nonce/commit/6df83aa769f367481231b21f7cac0d3c0297af40))
|
|
9
|
+
|
|
3
10
|
## [1.3.0](https://github.com/tozielinski/next-upstash-nonce/compare/v1.2.3...v1.3.0) (2025-11-22)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -52,9 +52,28 @@ export async function POST(req: Request) {
|
|
|
52
52
|
|
|
53
53
|
const valid = await nonceManager.verifyAndDelete(nonce);
|
|
54
54
|
|
|
55
|
+
// valid will be true if nonce was found and deleted
|
|
56
|
+
// false if nonce was not found or expired
|
|
57
|
+
|
|
55
58
|
return NextResponse.json({nonce: nonce, valid: valid});
|
|
56
59
|
}
|
|
57
60
|
```
|
|
61
|
+
or more simple
|
|
62
|
+
```typescript
|
|
63
|
+
'use server'
|
|
64
|
+
mport {NextResponse} from "next/server";
|
|
65
|
+
import {nonceManager} from "@/[wherever you store your nonceManager instance]";
|
|
66
|
+
|
|
67
|
+
export async function POST(req: Request) {
|
|
68
|
+
const result = await nonceManager.verifyAndDeleteNonceFromRequest(req);
|
|
69
|
+
|
|
70
|
+
// result will be {nonce: string, valid: true} or
|
|
71
|
+
// {valid false, reason: string, response: NextResponse}
|
|
72
|
+
// if nonce was not found or expired
|
|
73
|
+
|
|
74
|
+
return NextResponse.json({nonce: result.nonce, valid: result.valid});
|
|
75
|
+
}
|
|
76
|
+
```
|
|
58
77
|
### Use it in your client side
|
|
59
78
|
```typescript
|
|
60
79
|
'use client'
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Redis } from "@upstash/redis";
|
|
2
|
+
export type NonceOptions = {
|
|
3
|
+
length?: number;
|
|
4
|
+
ttlSeconds?: number;
|
|
5
|
+
prefix?: string;
|
|
6
|
+
};
|
|
7
|
+
export type NonceCheckResult = {
|
|
8
|
+
valid: true;
|
|
9
|
+
nonce: string;
|
|
10
|
+
} | {
|
|
11
|
+
valid: false;
|
|
12
|
+
reason: "missing-header" | "invalid-or-expired";
|
|
13
|
+
response: Response;
|
|
14
|
+
};
|
|
15
|
+
export declare class NonceManager {
|
|
16
|
+
private redis;
|
|
17
|
+
private length;
|
|
18
|
+
private ttlSeconds;
|
|
19
|
+
private prefix;
|
|
20
|
+
constructor(redis: Redis, opts?: NonceOptions);
|
|
21
|
+
/**
|
|
22
|
+
* generates a new, secure nonce,
|
|
23
|
+
* inserts it into Redis with a TTL,
|
|
24
|
+
* and returns the nonce string.
|
|
25
|
+
*/
|
|
26
|
+
create(): Promise<string>;
|
|
27
|
+
/**
|
|
28
|
+
* verifies a nonce and deletes it from Redis,
|
|
29
|
+
* returning true if the nonce exists and has not expired.
|
|
30
|
+
*/
|
|
31
|
+
verify(nonce: string): Promise<boolean>;
|
|
32
|
+
/**
|
|
33
|
+
* verifies a nonce and deletes it from Redis,
|
|
34
|
+
* returning true if the nonce exists and has not expired.
|
|
35
|
+
*/
|
|
36
|
+
verifyAndDelete(nonce: string): Promise<boolean>;
|
|
37
|
+
/**
|
|
38
|
+
* verifies a nonce from the Header of a request
|
|
39
|
+
* returns a NonceCheckResult if the nonce exists and has not expired.
|
|
40
|
+
*/
|
|
41
|
+
verifyNonceFromRequest(req: Request): Promise<NonceCheckResult>;
|
|
42
|
+
/**
|
|
43
|
+
* verifies a nonce from the Header of a request and deletes it from Redis
|
|
44
|
+
* returns a NonceCheckResult if the nonce exists and has not expired.
|
|
45
|
+
*/
|
|
46
|
+
verifyAndDeleteNonceFromRequest(req: Request): Promise<NonceCheckResult>;
|
|
47
|
+
/**
|
|
48
|
+
* Optional: delete a nonce from Redis manually
|
|
49
|
+
*/
|
|
50
|
+
delete(nonce: string): Promise<void>;
|
|
51
|
+
}
|
|
52
|
+
export default NonceManager;
|
|
53
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAGvC,MAAM,MAAM,YAAY,GAAG;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAK;IAC7B,KAAK,EAAE,IAAI,CAAC;IACZ,KAAK,EAAE,MAAM,CAAA;CAChB,GAAG;IACA,KAAK,EAAE,KAAK,CAAC;IACb,MAAM,EAAE,gBAAgB,GAAG,oBAAoB,CAAC;IAChD,QAAQ,EAAE,QAAQ,CAAA;CACrB,CAAC;AAEF,qBAAa,YAAY;IACrB,OAAO,CAAC,KAAK,CAAQ;IACrB,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,MAAM,CAAS;gBAGX,KAAK,EAAE,KAAK,EAAE,IAAI,GAAE,YAAiB;IAQjD;;;;OAIG;IACG,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC;IAS/B;;;OAGG;IACG,MAAM,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAa7C;;;OAGG;IACG,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAetD;;;OAGG;IACG,sBAAsB,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAoCrE;;;OAGG;IACG,+BAA+B,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAoC9E;;OAEG;IACG,MAAM,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CAI7C;AAGD,eAAe,YAAY,CAAC"}
|
package/package.json
CHANGED