2024-10-25 19:10:37 +00:00
import { string , ValidationError , number , object , array , boolean , date } from './yup'
2023-11-21 23:32:22 +00:00
import {
BOOST _MIN , MAX _POLL _CHOICE _LENGTH , MAX _TITLE _LENGTH , MAX _POLL _NUM _CHOICES ,
MIN _POLL _NUM _CHOICES , MAX _FORWARDS , BOOST _MULT , MAX _TERRITORY _DESC _LENGTH , POST _TYPES ,
2024-01-07 17:00:24 +00:00
TERRITORY _BILLING _TYPES , MAX _COMMENT _TEXT _LENGTH , MAX _POST _TEXT _LENGTH , MIN _TITLE _LENGTH , BOUNTY _MIN , BOUNTY _MAX , BALANCE _LIMIT _MSATS
2023-11-21 23:32:22 +00:00
} from './constants'
2023-02-08 19:38:04 +00:00
import { SUPPORTED _CURRENCIES } from './currency'
import { NOSTR _MAX _RELAY _NUM , NOSTR _PUBKEY _BECH32 , NOSTR _PUBKEY _HEX } from './nostr'
2024-10-25 19:10:37 +00:00
import { msatsToSats , numWithUnits , abbrNum } from './format'
2024-11-07 15:03:54 +00:00
import { SUB } from '@/fragments/subs'
import { NAME _QUERY } from '@/fragments/users'
2024-02-21 18:18:43 +00:00
import { datePivot } from './time'
2024-04-27 02:22:30 +00:00
import bip39Words from './bip39-words'
2024-02-14 21:09:13 +00:00
2024-10-25 19:10:37 +00:00
export async function validateSchema ( schema , data , args ) {
2023-02-08 19:38:04 +00:00
try {
if ( typeof schema === 'function' ) {
2024-08-13 14:48:30 +00:00
return await schema ( args ) . validate ( data )
2023-02-08 19:38:04 +00:00
} else {
2024-08-13 14:48:30 +00:00
return await schema . validate ( data )
2023-02-08 19:38:04 +00:00
}
} catch ( e ) {
2023-07-24 22:50:12 +00:00
if ( e instanceof ValidationError ) {
2023-02-08 19:38:04 +00:00
throw new Error ( ` ${ e . path } : ${ e . message } ` )
}
throw e
}
}
2023-07-24 22:50:12 +00:00
const titleValidator = string ( ) . required ( 'required' ) . trim ( ) . max (
2023-02-08 19:38:04 +00:00
MAX _TITLE _LENGTH ,
2023-09-12 00:59:36 +00:00
( { max , value } ) => ` - ${ Math . abs ( max - value . length ) } characters remaining `
2023-12-08 20:31:06 +00:00
) . min ( MIN _TITLE _LENGTH , ` must be at least ${ MIN _TITLE _LENGTH } characters ` )
2023-02-08 19:38:04 +00:00
2023-12-04 19:20:56 +00:00
const textValidator = ( max ) => string ( ) . trim ( ) . max (
max ,
( { max , value } ) => ` - ${ Math . abs ( max - value . length ) } characters remaining `
)
2023-11-21 23:32:22 +00:00
const nameValidator = string ( )
. required ( 'required' )
. matches ( /^[\w_]+$/ , 'only letters, numbers, and _' )
. max ( 32 , 'too long' )
2023-12-04 19:20:56 +00:00
2023-07-24 22:50:12 +00:00
const intValidator = number ( ) . typeError ( 'must be a number' ) . integer ( 'must be whole' )
2024-01-07 17:00:24 +00:00
const floatValidator = number ( ) . typeError ( 'must be a number' )
2024-10-25 19:10:37 +00:00
export const lightningAddressValidator = process . env . NODE _ENV === 'development'
2024-01-07 17:00:24 +00:00
? string ( ) . or (
Wallet definitions with uniform interface (#1243)
* wip: Use uniform interface for wallets
* Fix import error
* Update wallet logging + other stuff
* add canPay and canSend to wallet definition
* rename 'default payment method' to 'enabled' and add enable + disable method
* Set canPay, canReceive in useWallet
* Enable wallet if just configured
* Don't pass logger to sendPayment
* Add logging to attach & detach
* Add schema to wallet def
* Add NWC wallet
* Fix unused isDefault saved in config
* Fix enableWallet
* wrong storage key was used
* broke if wallets with no configs existed
* Run validation during save
* Use INFO level for 'wallet disabled' message
* Pass config with spread operator
* Support help, optional, hint in wallet fields
* wip: Add LNC
* Fix 20s page load for /settings/wallets.json?nodata=true
For some reason, if nodata is passed (which is the case if going back), the page takes 20s to load.
* Fix extremely slow page load for LNC import
I noticed that the combination of
```
import { Form, PasswordInput, SubmitButton } from '@/components/form'
```
in components/wallet/lnc.js and the dynamic import via `await import` in components/wallet/index.js caused extremely slow page loads.
* Use normal imports
* Revert "Fix 20s page load for /settings/wallets.json?nodata=true"
This reverts commit deb476b3a966569fefcfdf4082d6b64f90fbd0a2.
Not using the dynamic import for LNC fixed the slow page load with ?nodata=true.
* Remove follow and show recent logs first
* Fix position of log start marker
* Add FIXMEs for LNC
I can't get LNC to connect. It just hangs forever on lnc.connect(). See FIXMEs.
* Remove logger.error since already handled in useWallet
* Don't require destructuring to pass props to input
* wip: Add LND autowithdrawals
* receiving wallets need to export 'server' object field
* don't print macaroon error stack
* fix missing wallet logs order update
* mark autowithdrawl settings as required
* fix server wallet logs deletion
* remove canPay and canReceive since it was confusing where it is available
TODO
* also use numeric priority for sending wallets to be consistent with how status for receiving wallets is determined
* define createInvoice function in wallet definition
* consistent wallet logs: sending wallets use 'wallet attached'+'wallet enabled/disabled' whereas receiving wallets use 'wallet created/updated'
* see FIXMEs
* Fix TypeError
* Fix sendPayment called with empty config
* removed useEffect such that config is available on first render
* fix hydration error using dynamic import without SSR
* Fix confusing UX around enabled
* Remove FIXMEs
Rebase on master seemed to have fixed these, weird
* Use same error format in toast and wallet log
* Fix usage of conditional hooks in useConfig
* Fix isConfigured
* Fix delete wallet logs on server
* Fix wallet logs refetch
onError does not exist on client.mutate
* Fix TypeError in isConfigured if no enabled wallet found
* Only include local/server config if required
* Fix another hydration error
* Fix server config not updated after save or detach
* Also use 'enabled' for server wallets
* Fix wallet logs not updated after server delete
* Consistent logs between local and server wallets
* 'wallet attached' on create
* 'wallet updated' on config updates
* 'wallet enabled' and 'wallet disabled' if checkbox changed
* 'wallet detached' on delete
* Also enable server wallets on create
* Disable checkbox if not configured yet
* Move all validation schema into lib/validate
* Implement drag & drop w/o persistence
* Use dynamic import for WalletCard
This fixes a lot of issues with hydration
* Save order as priority
* Fix autowithdrawSettings not applied
Form requires config in flat format but mutation requires autowithdraw settings in a separate 'settings' field.
I have decided that config will be in flat form format. It will be transformed into mutation format during save.
* Save dedicated enabled flag for server wallets
* wallet table now contains boolean column 'enabled'
* 'priority' is now a number everywhere
* use consistent order between how autowithdrawals are attempted and server wallets cards
* Fix onCanceled missing
* Fix typo
* Fix noisy changes in lib/validate
I moved the schema for lnbits, nwc and lnc out of lib/validate only to put them back in there later.
This commit should make the changeset cleaner by removing noise.
* Split arguments into [value,] config, context
* Run lnbits url.replace in validate and sendPayment
* Remove unnecessary WALLETS_QUERY
* Generate wallet mutation from fields
* Generate wallet resolver from fields
* Fix import inconsistency between app and worker
* Use wallet.createInvoice for autowithdrawals
* Fix success autowithdrawal log
* Fix wallet security banner shown for server wallets
* Add autowithdrawal to lightning address
* Add optional wallet short name for logging
* Fix draggable
* Fix autowithdraw loop
* Add missing hints
* Add CLN autowithdrawal
* Detach wallets and delete logs on logout
* Remove Wallet in lib/constants
* Use inject function for resolvers and typeDefs
* Fix priority ignored when fetching enabled wallet
* Fix draggable false on first page load due to SSR
* Use touches instead of dnd on mobile
Browsers don't support drag events for touch devices.
To have a consistent implementation for desktop and mobile, we would need to use mousedown/touchstart, mouseup/touchend and mousemove/touchmove.
For now, this commit makes changing the order possible on touch devices with simple touches.
* Fix duplicate CLN error
* Fix autowithdraw priority order
* Fix error per invalid bip39 word
* Update LNC code
* remove LNC FIXMEs
Mhh, I guess the TURN server was down or something? It now magically works. Or maybe it only works once per mnemonic?
* also removed the lnc.lnd.lightning.getInfo() call since we don't ask and need permission for this RPC for payments.
* setting a password does not work though. It fails with 'The password provided is not valid' which is triggered at https://github.com/lightninglabs/lnc-web/blob/main/lib/util/credentialStore.ts#L81.
* Fix order if wallet with no priority exists
* Use common sort
* Add link to lnbits.com
* Add example wallet def
* Remove TODOs
TODO in components/wallet-logger.js was handled.
I don't see a need for the TODO in lib/wallet.js anymore. This function will only be called with the wallet of type LIGHTNING_ADDRESS anyway.
* Remove console.log
* Toast priority save errors
* Fix leaking relay connections
* Remove 'tor or clearnet' hint for LN addresses
* Remove React dependency from wallet definitions
* Generate resolver name from walletField
* Move wallets into top level directory wallet/
* Put wallets into own folder
* Fix generateMutation
* remove resolverName property from wallet defs
* move function into lib/wallet
* use function in generateMutation on client to fix wrongly generated mutation
* Separate client and server imports by files
* wallets now consist of an index.js, a client.js and a server.js file
* client.js is imported on the client and contains the client portion
* server.js is imported on the server and contains the server porition
* both reexport index.js so everything in index.js can be shared by client and server
* every wallet contains a client.js file since they are all imported on the client to show the cards
* client.js of every wallet is reexported as an array in wallets/client.js
* server.js of every wallet is reexported as an array in wallets/server.js
FIXME: for some reason, worker does not properly import the default export of wallets/server.js
* Fix worker import of wallets/server
* Fix wallet.server usage
* I removed wallet.server in a previous commit
* the client couldn't determine which wallet was stored on the server since all server specific fields were set in server.js
* walletType and walletField are now set in index.js
* walletType is now used to determine if a wallet is stored on the server
* also included some formatting changes
* Fix w.default usage
Since package.json with { "type": "module" } was added, this is no longer needed.
* Fix id access in walletPrioritySort
* Fix autowithdrawal error log
* Generate validation schema for LNbits
* Generate validation schema for NWC
* Rename to torAllowed
* Generate validation schema for LNC
* Generate validation schema for LND
* Generate validation schema for LnAddr
* Remove stringTypes
* Generate validation schema for CLN
* Make clear that message belongs to test
* validate.message was used in tandem with validate.test
* it might be confused as the message if the validation for validate.type failed
* now validate.test can be a function or an object of { test, message } shape which matches Yup.test
* Remove validate.schema as a trap door
* make lnc work
* Return null if no wallet was found
* Revert code around schema generation
* Transform autowithdrawSchemaMembers into an object
* Rename schema to yupSchema
* Fix missing required for LNbits adminKey
* Support formik form-level validation
* Fix missing addWalletLog import
* Fix missing space after =
* fix merge conflict resolution mistake
* remove non-custodial* badges
* create guides for attaching wallets in sndev
* Use built-in formik validation or Yup schema but not both
* Rename: validate -> testConnectClient, testConnect -> testConnectServer
* make lnaddr autowithdraw work in dev
* move ATTACH docs to ./wallets and add lnaddr doc
* Fix missing rename: yupSchema -> fieldValidation
* Remove unused context
* Add documentation how to add wallets
---------
Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
2024-07-20 22:51:46 +00:00
[ string ( ) . matches ( /^[\w_]+@localhost:\d+$/ ) , string ( ) . matches ( /^[\w_]+@app:\d+$/ ) , string ( ) . email ( ) ] ,
2024-01-07 17:00:24 +00:00
'address is no good' )
: string ( ) . email ( 'address is no good' )
2023-02-08 19:38:04 +00:00
2023-09-26 00:54:35 +00:00
async function usernameExists ( name , { client , models } ) {
if ( ! client && ! models ) {
2023-02-08 19:38:04 +00:00
throw new Error ( 'cannot check for user' )
}
// apollo client
2023-09-26 00:54:35 +00:00
if ( client ) {
2023-07-23 15:08:43 +00:00
const { data } = await client . query ( { query : NAME _QUERY , variables : { name } } )
2023-02-08 19:38:04 +00:00
return ! data . nameAvailable
}
// prisma client
2023-09-26 00:54:35 +00:00
const user = await models . user . findUnique ( { where : { name } } )
2023-02-08 19:38:04 +00:00
return ! ! user
}
2024-03-14 16:17:53 +00:00
async function subExists ( name , { client , models , me , filter } ) {
2023-11-21 23:32:22 +00:00
if ( ! client && ! models ) {
throw new Error ( 'cannot check for territory' )
}
let sub
// apollo client
if ( client ) {
2024-03-14 16:17:53 +00:00
const { data } = await client . query ( { query : SUB , variables : { sub : name } , fetchPolicy : 'no-cache' } )
2023-11-21 23:32:22 +00:00
sub = data ? . sub
} else {
sub = await models . sub . findUnique ( { where : { name } } )
}
2024-03-14 16:17:53 +00:00
return ! ! sub && ( ! filter || filter ( sub ) )
2023-11-21 23:32:22 +00:00
}
async function subActive ( name , { client , models , me } ) {
if ( ! client && ! models ) {
throw new Error ( 'cannot check if territory is active' )
}
let sub
// apollo client
if ( client ) {
const { data } = await client . query ( { query : SUB , variables : { sub : name } } )
sub = data ? . sub
} else {
sub = await models . sub . findUnique ( { where : { name } } )
}
2024-03-19 22:23:59 +00:00
return sub ? sub . status !== 'STOPPED' : undefined
2023-11-21 23:32:22 +00:00
}
async function subHasPostType ( name , type , { client , models } ) {
if ( ! client && ! models ) {
throw new Error ( 'cannot check for territory' )
}
// apollo client
if ( client ) {
const { data } = await client . query ( { query : SUB , variables : { name } } )
return ! ! ( data ? . sub ? . postTypes ? . includes ( type ) )
}
// prisma client
const sub = await models . sub . findUnique ( { where : { name } } )
return ! ! ( sub ? . postTypes ? . includes ( type ) )
}
2023-09-26 00:54:35 +00:00
export function advPostSchemaMembers ( { me , existingBoost = 0 , ... args } ) {
const boostMin = existingBoost || BOOST _MIN
2023-02-08 19:38:04 +00:00
return {
boost : intValidator
2023-09-26 00:54:35 +00:00
. min ( boostMin , ` must be ${ existingBoost ? '' : 'blank or ' } at least ${ boostMin } ` ) . test ( {
2023-02-08 19:38:04 +00:00
name : 'boost' ,
2023-09-26 00:54:35 +00:00
test : async boost => ( ! existingBoost && ! boost ) || boost % BOOST _MULT === 0 ,
message : ` must be divisble be ${ BOOST _MULT } `
2023-02-08 19:38:04 +00:00
} ) ,
multiple forwards on a post (#403)
* multiple forwards on a post
first phase of the multi-forward support
* update the graphql mutation for discussion posts to accept and validate multiple forwards
* update the discussion form to allow multiple forwards in the UI
* start working on db schema changes
* uncomment db schema, add migration to create the new model, and update create_item, update_item
stored procedures
* Propagate updates from discussion to poll, link, and bounty forms
Update the create, update poll sql functions for multi forward support
* Update gql, typedefs, and resolver to return forwarded users in items responses
* UI changes to show multiple forward recipients, and conditional upvote logic changes
* Update notification text to reflect multiple forwards upon vote action
* Disallow duplicate stacker entries
* reduce duplication in populating adv-post-form initial values
* Update item_act sql function to implement multi-way forwarding
* Update referral functions to scale referral bonuses for forwarded users
* Update notification text to reflect non-100% forwarded sats cases
* Update wallet history sql queries to accommodate multi-forward use cases
* Block zaps for posts you are forwarded zaps at the API layer, in addition
to in the UI
* Delete fwdUserId column from Item table as part of migration
* Fix how we calculate stacked sats after partial forwards in wallet history
* Exclude entries from wallet history that are 0 stacked sats from posts with 100% forwarded to other users
* Fix wallet history query for forwarded stacked sats to be scaled by the fwd pct
* Reduce duplication in adv post form, and do some style tweaks for better layout
* Use MAX_FORWARDS constants
* Address various PR feedback
* first enhancement pass
* enhancement pass too
---------
Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
2023-08-23 22:44:17 +00:00
forward : array ( )
. max ( MAX _FORWARDS , ` you can only configure ${ MAX _FORWARDS } forward recipients ` )
. of ( object ( ) . shape ( {
2023-09-12 16:56:59 +00:00
nym : string ( ) . required ( 'must specify a stacker' )
. test ( {
name : 'nym' ,
test : async name => {
if ( ! name || ! name . length ) return false
2023-09-26 00:54:35 +00:00
return await usernameExists ( name , args )
2023-09-12 16:56:59 +00:00
} ,
message : 'stacker does not exist'
} )
. test ( {
name : 'self' ,
test : async name => {
return me ? . name !== name
} ,
message : 'cannot forward to yourself'
} ) ,
multiple forwards on a post (#403)
* multiple forwards on a post
first phase of the multi-forward support
* update the graphql mutation for discussion posts to accept and validate multiple forwards
* update the discussion form to allow multiple forwards in the UI
* start working on db schema changes
* uncomment db schema, add migration to create the new model, and update create_item, update_item
stored procedures
* Propagate updates from discussion to poll, link, and bounty forms
Update the create, update poll sql functions for multi forward support
* Update gql, typedefs, and resolver to return forwarded users in items responses
* UI changes to show multiple forward recipients, and conditional upvote logic changes
* Update notification text to reflect multiple forwards upon vote action
* Disallow duplicate stacker entries
* reduce duplication in populating adv-post-form initial values
* Update item_act sql function to implement multi-way forwarding
* Update referral functions to scale referral bonuses for forwarded users
* Update notification text to reflect non-100% forwarded sats cases
* Update wallet history sql queries to accommodate multi-forward use cases
* Block zaps for posts you are forwarded zaps at the API layer, in addition
to in the UI
* Delete fwdUserId column from Item table as part of migration
* Fix how we calculate stacked sats after partial forwards in wallet history
* Exclude entries from wallet history that are 0 stacked sats from posts with 100% forwarded to other users
* Fix wallet history query for forwarded stacked sats to be scaled by the fwd pct
* Reduce duplication in adv post form, and do some style tweaks for better layout
* Use MAX_FORWARDS constants
* Address various PR feedback
* first enhancement pass
* enhancement pass too
---------
Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
2023-08-23 22:44:17 +00:00
pct : intValidator . required ( 'must specify a percentage' ) . min ( 1 , 'percentage must be at least 1' ) . max ( 100 , 'percentage must not exceed 100' )
} ) )
. compact ( ( v ) => ! v . nym && ! v . pct )
2023-02-08 19:38:04 +00:00
. test ( {
multiple forwards on a post (#403)
* multiple forwards on a post
first phase of the multi-forward support
* update the graphql mutation for discussion posts to accept and validate multiple forwards
* update the discussion form to allow multiple forwards in the UI
* start working on db schema changes
* uncomment db schema, add migration to create the new model, and update create_item, update_item
stored procedures
* Propagate updates from discussion to poll, link, and bounty forms
Update the create, update poll sql functions for multi forward support
* Update gql, typedefs, and resolver to return forwarded users in items responses
* UI changes to show multiple forward recipients, and conditional upvote logic changes
* Update notification text to reflect multiple forwards upon vote action
* Disallow duplicate stacker entries
* reduce duplication in populating adv-post-form initial values
* Update item_act sql function to implement multi-way forwarding
* Update referral functions to scale referral bonuses for forwarded users
* Update notification text to reflect non-100% forwarded sats cases
* Update wallet history sql queries to accommodate multi-forward use cases
* Block zaps for posts you are forwarded zaps at the API layer, in addition
to in the UI
* Delete fwdUserId column from Item table as part of migration
* Fix how we calculate stacked sats after partial forwards in wallet history
* Exclude entries from wallet history that are 0 stacked sats from posts with 100% forwarded to other users
* Fix wallet history query for forwarded stacked sats to be scaled by the fwd pct
* Reduce duplication in adv post form, and do some style tweaks for better layout
* Use MAX_FORWARDS constants
* Address various PR feedback
* first enhancement pass
* enhancement pass too
---------
Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
2023-08-23 22:44:17 +00:00
name : 'sum' ,
2023-08-28 12:12:36 +00:00
test : forwards => forwards ? forwards . map ( fwd => Number ( fwd . pct ) ) . reduce ( ( sum , cur ) => sum + cur , 0 ) <= 100 : true ,
multiple forwards on a post (#403)
* multiple forwards on a post
first phase of the multi-forward support
* update the graphql mutation for discussion posts to accept and validate multiple forwards
* update the discussion form to allow multiple forwards in the UI
* start working on db schema changes
* uncomment db schema, add migration to create the new model, and update create_item, update_item
stored procedures
* Propagate updates from discussion to poll, link, and bounty forms
Update the create, update poll sql functions for multi forward support
* Update gql, typedefs, and resolver to return forwarded users in items responses
* UI changes to show multiple forward recipients, and conditional upvote logic changes
* Update notification text to reflect multiple forwards upon vote action
* Disallow duplicate stacker entries
* reduce duplication in populating adv-post-form initial values
* Update item_act sql function to implement multi-way forwarding
* Update referral functions to scale referral bonuses for forwarded users
* Update notification text to reflect non-100% forwarded sats cases
* Update wallet history sql queries to accommodate multi-forward use cases
* Block zaps for posts you are forwarded zaps at the API layer, in addition
to in the UI
* Delete fwdUserId column from Item table as part of migration
* Fix how we calculate stacked sats after partial forwards in wallet history
* Exclude entries from wallet history that are 0 stacked sats from posts with 100% forwarded to other users
* Fix wallet history query for forwarded stacked sats to be scaled by the fwd pct
* Reduce duplication in adv post form, and do some style tweaks for better layout
* Use MAX_FORWARDS constants
* Address various PR feedback
* first enhancement pass
* enhancement pass too
---------
Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
2023-08-23 22:44:17 +00:00
message : 'the total forward percentage exceeds 100%'
} )
. test ( {
name : 'uniqueStackers' ,
2023-08-28 12:12:36 +00:00
test : forwards => forwards ? new Set ( forwards . map ( fwd => fwd . nym ) ) . size === forwards . length : true ,
multiple forwards on a post (#403)
* multiple forwards on a post
first phase of the multi-forward support
* update the graphql mutation for discussion posts to accept and validate multiple forwards
* update the discussion form to allow multiple forwards in the UI
* start working on db schema changes
* uncomment db schema, add migration to create the new model, and update create_item, update_item
stored procedures
* Propagate updates from discussion to poll, link, and bounty forms
Update the create, update poll sql functions for multi forward support
* Update gql, typedefs, and resolver to return forwarded users in items responses
* UI changes to show multiple forward recipients, and conditional upvote logic changes
* Update notification text to reflect multiple forwards upon vote action
* Disallow duplicate stacker entries
* reduce duplication in populating adv-post-form initial values
* Update item_act sql function to implement multi-way forwarding
* Update referral functions to scale referral bonuses for forwarded users
* Update notification text to reflect non-100% forwarded sats cases
* Update wallet history sql queries to accommodate multi-forward use cases
* Block zaps for posts you are forwarded zaps at the API layer, in addition
to in the UI
* Delete fwdUserId column from Item table as part of migration
* Fix how we calculate stacked sats after partial forwards in wallet history
* Exclude entries from wallet history that are 0 stacked sats from posts with 100% forwarded to other users
* Fix wallet history query for forwarded stacked sats to be scaled by the fwd pct
* Reduce duplication in adv post form, and do some style tweaks for better layout
* Use MAX_FORWARDS constants
* Address various PR feedback
* first enhancement pass
* enhancement pass too
---------
Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
2023-08-23 22:44:17 +00:00
message : 'duplicate stackers cannot be specified to receive forwarded sats'
2023-02-08 19:38:04 +00:00
} )
}
}
2023-11-21 23:32:22 +00:00
export function subSelectSchemaMembers ( args ) {
2023-05-11 00:26:07 +00:00
return {
2023-11-21 23:32:22 +00:00
sub : string ( ) . required ( 'required' ) . test ( {
name : 'sub' ,
test : async sub => {
if ( ! sub || ! sub . length ) return false
2024-03-14 16:17:53 +00:00
return await subExists ( sub , args )
2023-11-21 23:32:22 +00:00
} ,
message : 'pick valid territory'
} ) . test ( {
name : 'sub' ,
test : async sub => {
if ( ! sub || ! sub . length ) return false
2024-03-14 16:17:53 +00:00
return await subActive ( sub , args )
2023-11-21 23:32:22 +00:00
} ,
message : 'territory is not active'
} )
2023-05-11 00:26:07 +00:00
}
}
2023-09-26 00:54:35 +00:00
// for testing advPostSchemaMembers in isolation
export function advSchema ( args ) {
return object ( {
... advPostSchemaMembers ( args )
} )
}
2023-05-11 00:26:07 +00:00
2024-10-25 19:10:37 +00:00
export const autowithdrawSchemaMembers = object ( {
autoWithdrawThreshold : intValidator . required ( 'required' ) . min ( 0 , 'must be at least 0' ) . max ( msatsToSats ( BALANCE _LIMIT _MSATS ) , ` must be at most ${ abbrNum ( msatsToSats ( BALANCE _LIMIT _MSATS ) ) } ` ) . transform ( Number ) ,
autoWithdrawMaxFeePercent : floatValidator . required ( 'required' ) . min ( 0 , 'must be at least 0' ) . max ( 50 , 'must not exceed 50' ) . transform ( Number ) ,
autoWithdrawMaxFeeTotal : intValidator . required ( 'required' ) . min ( 0 , 'must be at least 0' ) . max ( 1_000 , 'must not exceed 1000' ) . transform ( Number )
Wallet definitions with uniform interface (#1243)
* wip: Use uniform interface for wallets
* Fix import error
* Update wallet logging + other stuff
* add canPay and canSend to wallet definition
* rename 'default payment method' to 'enabled' and add enable + disable method
* Set canPay, canReceive in useWallet
* Enable wallet if just configured
* Don't pass logger to sendPayment
* Add logging to attach & detach
* Add schema to wallet def
* Add NWC wallet
* Fix unused isDefault saved in config
* Fix enableWallet
* wrong storage key was used
* broke if wallets with no configs existed
* Run validation during save
* Use INFO level for 'wallet disabled' message
* Pass config with spread operator
* Support help, optional, hint in wallet fields
* wip: Add LNC
* Fix 20s page load for /settings/wallets.json?nodata=true
For some reason, if nodata is passed (which is the case if going back), the page takes 20s to load.
* Fix extremely slow page load for LNC import
I noticed that the combination of
```
import { Form, PasswordInput, SubmitButton } from '@/components/form'
```
in components/wallet/lnc.js and the dynamic import via `await import` in components/wallet/index.js caused extremely slow page loads.
* Use normal imports
* Revert "Fix 20s page load for /settings/wallets.json?nodata=true"
This reverts commit deb476b3a966569fefcfdf4082d6b64f90fbd0a2.
Not using the dynamic import for LNC fixed the slow page load with ?nodata=true.
* Remove follow and show recent logs first
* Fix position of log start marker
* Add FIXMEs for LNC
I can't get LNC to connect. It just hangs forever on lnc.connect(). See FIXMEs.
* Remove logger.error since already handled in useWallet
* Don't require destructuring to pass props to input
* wip: Add LND autowithdrawals
* receiving wallets need to export 'server' object field
* don't print macaroon error stack
* fix missing wallet logs order update
* mark autowithdrawl settings as required
* fix server wallet logs deletion
* remove canPay and canReceive since it was confusing where it is available
TODO
* also use numeric priority for sending wallets to be consistent with how status for receiving wallets is determined
* define createInvoice function in wallet definition
* consistent wallet logs: sending wallets use 'wallet attached'+'wallet enabled/disabled' whereas receiving wallets use 'wallet created/updated'
* see FIXMEs
* Fix TypeError
* Fix sendPayment called with empty config
* removed useEffect such that config is available on first render
* fix hydration error using dynamic import without SSR
* Fix confusing UX around enabled
* Remove FIXMEs
Rebase on master seemed to have fixed these, weird
* Use same error format in toast and wallet log
* Fix usage of conditional hooks in useConfig
* Fix isConfigured
* Fix delete wallet logs on server
* Fix wallet logs refetch
onError does not exist on client.mutate
* Fix TypeError in isConfigured if no enabled wallet found
* Only include local/server config if required
* Fix another hydration error
* Fix server config not updated after save or detach
* Also use 'enabled' for server wallets
* Fix wallet logs not updated after server delete
* Consistent logs between local and server wallets
* 'wallet attached' on create
* 'wallet updated' on config updates
* 'wallet enabled' and 'wallet disabled' if checkbox changed
* 'wallet detached' on delete
* Also enable server wallets on create
* Disable checkbox if not configured yet
* Move all validation schema into lib/validate
* Implement drag & drop w/o persistence
* Use dynamic import for WalletCard
This fixes a lot of issues with hydration
* Save order as priority
* Fix autowithdrawSettings not applied
Form requires config in flat format but mutation requires autowithdraw settings in a separate 'settings' field.
I have decided that config will be in flat form format. It will be transformed into mutation format during save.
* Save dedicated enabled flag for server wallets
* wallet table now contains boolean column 'enabled'
* 'priority' is now a number everywhere
* use consistent order between how autowithdrawals are attempted and server wallets cards
* Fix onCanceled missing
* Fix typo
* Fix noisy changes in lib/validate
I moved the schema for lnbits, nwc and lnc out of lib/validate only to put them back in there later.
This commit should make the changeset cleaner by removing noise.
* Split arguments into [value,] config, context
* Run lnbits url.replace in validate and sendPayment
* Remove unnecessary WALLETS_QUERY
* Generate wallet mutation from fields
* Generate wallet resolver from fields
* Fix import inconsistency between app and worker
* Use wallet.createInvoice for autowithdrawals
* Fix success autowithdrawal log
* Fix wallet security banner shown for server wallets
* Add autowithdrawal to lightning address
* Add optional wallet short name for logging
* Fix draggable
* Fix autowithdraw loop
* Add missing hints
* Add CLN autowithdrawal
* Detach wallets and delete logs on logout
* Remove Wallet in lib/constants
* Use inject function for resolvers and typeDefs
* Fix priority ignored when fetching enabled wallet
* Fix draggable false on first page load due to SSR
* Use touches instead of dnd on mobile
Browsers don't support drag events for touch devices.
To have a consistent implementation for desktop and mobile, we would need to use mousedown/touchstart, mouseup/touchend and mousemove/touchmove.
For now, this commit makes changing the order possible on touch devices with simple touches.
* Fix duplicate CLN error
* Fix autowithdraw priority order
* Fix error per invalid bip39 word
* Update LNC code
* remove LNC FIXMEs
Mhh, I guess the TURN server was down or something? It now magically works. Or maybe it only works once per mnemonic?
* also removed the lnc.lnd.lightning.getInfo() call since we don't ask and need permission for this RPC for payments.
* setting a password does not work though. It fails with 'The password provided is not valid' which is triggered at https://github.com/lightninglabs/lnc-web/blob/main/lib/util/credentialStore.ts#L81.
* Fix order if wallet with no priority exists
* Use common sort
* Add link to lnbits.com
* Add example wallet def
* Remove TODOs
TODO in components/wallet-logger.js was handled.
I don't see a need for the TODO in lib/wallet.js anymore. This function will only be called with the wallet of type LIGHTNING_ADDRESS anyway.
* Remove console.log
* Toast priority save errors
* Fix leaking relay connections
* Remove 'tor or clearnet' hint for LN addresses
* Remove React dependency from wallet definitions
* Generate resolver name from walletField
* Move wallets into top level directory wallet/
* Put wallets into own folder
* Fix generateMutation
* remove resolverName property from wallet defs
* move function into lib/wallet
* use function in generateMutation on client to fix wrongly generated mutation
* Separate client and server imports by files
* wallets now consist of an index.js, a client.js and a server.js file
* client.js is imported on the client and contains the client portion
* server.js is imported on the server and contains the server porition
* both reexport index.js so everything in index.js can be shared by client and server
* every wallet contains a client.js file since they are all imported on the client to show the cards
* client.js of every wallet is reexported as an array in wallets/client.js
* server.js of every wallet is reexported as an array in wallets/server.js
FIXME: for some reason, worker does not properly import the default export of wallets/server.js
* Fix worker import of wallets/server
* Fix wallet.server usage
* I removed wallet.server in a previous commit
* the client couldn't determine which wallet was stored on the server since all server specific fields were set in server.js
* walletType and walletField are now set in index.js
* walletType is now used to determine if a wallet is stored on the server
* also included some formatting changes
* Fix w.default usage
Since package.json with { "type": "module" } was added, this is no longer needed.
* Fix id access in walletPrioritySort
* Fix autowithdrawal error log
* Generate validation schema for LNbits
* Generate validation schema for NWC
* Rename to torAllowed
* Generate validation schema for LNC
* Generate validation schema for LND
* Generate validation schema for LnAddr
* Remove stringTypes
* Generate validation schema for CLN
* Make clear that message belongs to test
* validate.message was used in tandem with validate.test
* it might be confused as the message if the validation for validate.type failed
* now validate.test can be a function or an object of { test, message } shape which matches Yup.test
* Remove validate.schema as a trap door
* make lnc work
* Return null if no wallet was found
* Revert code around schema generation
* Transform autowithdrawSchemaMembers into an object
* Rename schema to yupSchema
* Fix missing required for LNbits adminKey
* Support formik form-level validation
* Fix missing addWalletLog import
* Fix missing space after =
* fix merge conflict resolution mistake
* remove non-custodial* badges
* create guides for attaching wallets in sndev
* Use built-in formik validation or Yup schema but not both
* Rename: validate -> testConnectClient, testConnect -> testConnectServer
* make lnaddr autowithdraw work in dev
* move ATTACH docs to ./wallets and add lnaddr doc
* Fix missing rename: yupSchema -> fieldValidation
* Remove unused context
* Add documentation how to add wallets
---------
Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
2024-07-20 22:51:46 +00:00
} )
2024-02-13 19:17:56 +00:00
2024-10-27 07:43:45 +00:00
export const vaultEntrySchema = key => object ( {
key : string ( ) . required ( 'required' ) . matches ( key , ` expected ${ key } ` ) ,
iv : string ( ) . required ( 'required' ) . hex ( ) . length ( 24 , 'must be 24 characters long' ) ,
value : string ( ) . required ( 'required' ) . hex ( ) . min ( 2 ) . max ( 1024 * 10 )
} )
2024-10-25 19:10:37 +00:00
export const lnAddrSchema = ( { payerData , min , max , commentAllowed } = { } ) =>
object ( {
addr : lightningAddressValidator . required ( 'required' ) ,
amount : ( ( ) => {
const schema = intValidator . required ( 'required' ) . positive ( 'must be positive' ) . min (
min || 1 , ` must be at least ${ min || 1 } ` )
return max ? schema . max ( max , ` must be at most ${ max } ` ) : schema
} ) ( ) ,
maxFee : intValidator . required ( 'required' ) . min ( 0 , 'must be at least 0' ) ,
comment : commentAllowed
? string ( ) . max ( commentAllowed , ` must be less than ${ commentAllowed } ` )
: string ( )
} ) . concat ( object ( ) . shape ( Object . keys ( payerData || { } ) . reduce ( ( accum , key ) => {
const entry = payerData [ key ]
if ( key === 'email' ) {
accum [ key ] = string ( ) . email ( )
} else if ( key === 'identifier' ) {
accum [ key ] = boolean ( )
} else {
accum [ key ] = string ( )
}
if ( entry ? . mandatory ) {
accum [ key ] = accum [ key ] . required ( )
}
return accum
} , { } ) ) )
2024-04-14 22:34:21 +00:00
2023-09-26 00:54:35 +00:00
export function bountySchema ( args ) {
2023-07-24 22:50:12 +00:00
return object ( {
2023-02-08 19:38:04 +00:00
title : titleValidator ,
2023-12-04 19:20:56 +00:00
text : textValidator ( MAX _POST _TEXT _LENGTH ) ,
2023-02-08 19:38:04 +00:00
bounty : intValidator
2023-12-27 16:23:54 +00:00
. min ( BOUNTY _MIN , ` must be at least ${ numWithUnits ( BOUNTY _MIN ) } ` )
. max ( BOUNTY _MAX , ` must be at most ${ numWithUnits ( BOUNTY _MAX ) } ` ) ,
2023-09-26 00:54:35 +00:00
... advPostSchemaMembers ( args ) ,
2023-11-21 23:32:22 +00:00
... subSelectSchemaMembers ( args )
} ) . test ( {
name : 'post-type-supported' ,
test : ( { sub } ) => subHasPostType ( sub , 'BOUNTY' , args ) ,
message : 'territory does not support bounties'
2023-02-08 19:38:04 +00:00
} )
}
2023-09-26 00:54:35 +00:00
export function discussionSchema ( args ) {
2023-07-24 22:50:12 +00:00
return object ( {
2023-02-08 19:38:04 +00:00
title : titleValidator ,
2023-12-04 19:20:56 +00:00
text : textValidator ( MAX _POST _TEXT _LENGTH ) ,
2023-09-26 00:54:35 +00:00
... advPostSchemaMembers ( args ) ,
2023-11-21 23:32:22 +00:00
... subSelectSchemaMembers ( args )
} ) . test ( {
name : 'post-type-supported' ,
test : ( { sub } ) => subHasPostType ( sub , 'DISCUSSION' , args ) ,
message : 'territory does not support discussions'
2023-02-08 19:38:04 +00:00
} )
}
2023-09-26 00:54:35 +00:00
export function linkSchema ( args ) {
2023-07-24 22:50:12 +00:00
return object ( {
2023-02-08 19:38:04 +00:00
title : titleValidator ,
2023-12-04 19:20:56 +00:00
text : textValidator ( MAX _POST _TEXT _LENGTH ) ,
2024-02-13 19:17:56 +00:00
url : string ( ) . url ( ) . required ( 'required' ) ,
2023-09-26 00:54:35 +00:00
... advPostSchemaMembers ( args ) ,
2023-11-21 23:32:22 +00:00
... subSelectSchemaMembers ( args )
} ) . test ( {
name : 'post-type-supported' ,
test : ( { sub } ) => subHasPostType ( sub , 'LINK' , args ) ,
message : 'territory does not support links'
2023-02-08 19:38:04 +00:00
} )
}
2023-09-26 00:54:35 +00:00
export function pollSchema ( { numExistingChoices = 0 , ... args } ) {
2023-07-24 22:50:12 +00:00
return object ( {
2023-02-08 19:38:04 +00:00
title : titleValidator ,
2023-12-04 19:20:56 +00:00
text : textValidator ( MAX _POST _TEXT _LENGTH ) ,
2023-07-24 22:50:12 +00:00
options : array ( ) . of (
string ( ) . trim ( ) . test ( 'my-test' , 'required' , function ( value ) {
2023-02-08 19:38:04 +00:00
return ( this . path !== 'options[0]' && this . path !== 'options[1]' ) || value
} ) . max ( MAX _POLL _CHOICE _LENGTH ,
2023-09-12 00:59:36 +00:00
( { max , value } ) => ` - ${ Math . abs ( max - value . length ) } characters remaining `
2023-02-08 19:38:04 +00:00
)
) . test ( {
message : ` at most ${ MAX _POLL _NUM _CHOICES } choices ` ,
test : arr => arr . length <= MAX _POLL _NUM _CHOICES - numExistingChoices
} ) . test ( {
message : ` at least ${ MIN _POLL _NUM _CHOICES } choices required ` ,
test : arr => arr . length >= MIN _POLL _NUM _CHOICES - numExistingChoices
} ) ,
2024-02-21 18:18:43 +00:00
pollExpiresAt : date ( ) . nullable ( ) . min ( datePivot ( new Date ( ) , { days : 1 } ) , 'Expiration must be at least 1 day in the future' ) ,
2023-09-26 00:54:35 +00:00
... advPostSchemaMembers ( args ) ,
2023-11-21 23:32:22 +00:00
... subSelectSchemaMembers ( args )
} ) . test ( {
name : 'post-type-supported' ,
test : ( { sub } ) => subHasPostType ( sub , 'POLL' , args ) ,
message : 'territory does not support polls'
} )
}
export function territorySchema ( args ) {
return object ( {
name : nameValidator
. test ( {
name : 'name' ,
test : async name => {
if ( ! name || ! name . length ) return false
2024-03-19 22:23:59 +00:00
const editing = ! ! args . sub ? . name
// don't block submission on edits or unarchival
const isEdit = sub => sub . name === args . sub . name
const isArchived = sub => sub . status === 'STOPPED'
const filter = sub => editing ? ! isEdit ( sub ) : ! isArchived ( sub )
const exists = await subExists ( name , { ... args , filter } )
2024-03-14 16:17:53 +00:00
return ! exists
2023-11-21 23:32:22 +00:00
} ,
message : 'taken'
} ) ,
desc : string ( ) . required ( 'required' ) . trim ( ) . max (
MAX _TERRITORY _DESC _LENGTH ,
( { max , value } ) => ` - ${ Math . abs ( max - value . length ) } characters remaining `
) ,
baseCost : intValidator
. min ( 1 , 'must be at least 1' )
. max ( 100000 , 'must be at most 100k' ) ,
postTypes : array ( ) . of ( string ( ) . oneOf ( POST _TYPES ) ) . min ( 1 , 'must support at least one post type' ) ,
2024-02-10 02:35:32 +00:00
billingType : string ( ) . required ( 'required' ) . oneOf ( TERRITORY _BILLING _TYPES , 'required' ) ,
nsfw : boolean ( )
2023-02-08 19:38:04 +00:00
} )
}
2024-03-05 19:56:02 +00:00
export function territoryTransferSchema ( { me , ... args } ) {
return object ( {
userName : nameValidator
. test ( {
name : 'name' ,
test : async name => {
if ( ! name || ! name . length ) return false
return await usernameExists ( name , args )
} ,
message : 'user does not exist'
} )
. test ( {
name : 'name' ,
test : name => ! me || me . name !== name ,
message : 'cannot transfer to yourself'
} )
} )
}
2023-09-26 00:54:35 +00:00
export function userSchema ( args ) {
2023-07-24 22:50:12 +00:00
return object ( {
2023-11-21 23:32:22 +00:00
name : nameValidator
2023-02-08 19:38:04 +00:00
. test ( {
name : 'name' ,
test : async name => {
if ( ! name || ! name . length ) return false
2023-09-26 00:54:35 +00:00
return ! ( await usernameExists ( name , args ) )
2023-02-08 19:38:04 +00:00
} ,
message : 'taken'
} )
} )
}
2023-07-24 22:50:12 +00:00
export const commentSchema = object ( {
2023-12-04 19:20:56 +00:00
text : textValidator ( MAX _COMMENT _TEXT _LENGTH ) . required ( 'required' )
2023-02-08 19:38:04 +00:00
} )
2024-09-19 18:13:14 +00:00
export const jobSchema = args => object ( {
2023-02-08 19:38:04 +00:00
title : titleValidator ,
2023-07-24 22:50:12 +00:00
company : string ( ) . required ( 'required' ) . trim ( ) ,
2023-12-04 19:20:56 +00:00
text : textValidator ( MAX _POST _TEXT _LENGTH ) . required ( 'required' ) ,
2023-07-24 22:50:12 +00:00
url : string ( )
. or ( [ string ( ) . email ( ) , string ( ) . url ( ) ] , 'invalid url or email' )
2023-02-08 19:38:04 +00:00
. required ( 'required' ) ,
2023-07-24 22:50:12 +00:00
location : string ( ) . test (
2023-02-08 19:38:04 +00:00
'no-remote' ,
"don't write remote, just check the box" ,
v => ! v ? . match ( /\bremote\b/gi ) )
. when ( 'remote' , {
is : ( value ) => ! value ,
2023-07-27 00:18:42 +00:00
then : schema => schema . required ( 'required' ) . trim ( )
2024-09-19 18:13:14 +00:00
} ) ,
... advPostSchemaMembers ( args )
2023-02-08 19:38:04 +00:00
} )
2023-07-24 22:50:12 +00:00
export const emailSchema = object ( {
email : string ( ) . email ( 'email is no good' ) . required ( 'required' )
2023-02-08 19:38:04 +00:00
} )
2023-07-24 22:50:12 +00:00
export const urlSchema = object ( {
2024-02-13 19:17:56 +00:00
url : string ( ) . url ( ) . required ( 'required' )
2023-02-08 19:38:04 +00:00
} )
2023-07-24 22:50:12 +00:00
export const namedUrlSchema = object ( {
text : string ( ) . required ( 'required' ) . trim ( ) ,
2024-02-13 19:17:56 +00:00
url : string ( ) . url ( ) . required ( 'required' )
2023-02-08 19:38:04 +00:00
} )
2023-07-24 22:50:12 +00:00
export const amountSchema = object ( {
2023-02-08 19:38:04 +00:00
amount : intValidator . required ( 'required' ) . positive ( 'must be positive' )
} )
2024-09-19 18:38:13 +00:00
export const boostValidator = intValidator
. min ( BOOST _MULT , ` must be at least ${ BOOST _MULT } ` ) . test ( {
name : 'boost' ,
test : async boost => boost % BOOST _MULT === 0 ,
message : ` must be divisble be ${ BOOST _MULT } `
} )
2024-09-19 18:13:14 +00:00
export const boostSchema = object ( {
2024-09-19 18:38:13 +00:00
amount : boostValidator . required ( 'required' ) . positive ( 'must be positive' )
2024-09-19 18:13:14 +00:00
} )
2023-12-26 22:51:47 +00:00
export const actSchema = object ( {
2024-09-19 18:38:13 +00:00
sats : intValidator . required ( 'required' ) . positive ( 'must be positive' )
. when ( [ 'act' ] , ( [ act ] , schema ) => {
if ( act === 'BOOST' ) {
return boostValidator
}
return schema
} ) ,
2024-09-19 18:13:14 +00:00
act : string ( ) . required ( 'required' ) . oneOf ( [ 'TIP' , 'DONT_LIKE_THIS' , 'BOOST' ] )
2023-12-26 22:51:47 +00:00
} )
2024-07-27 03:37:03 +00:00
export const settingsSchema = object ( ) . shape ( {
2023-02-08 19:38:04 +00:00
tipDefault : intValidator . required ( 'required' ) . positive ( 'must be positive' ) ,
2024-08-04 00:51:15 +00:00
tipRandom : boolean ( ) ,
2024-07-27 03:37:03 +00:00
tipRandomMin : intValidator . nullable ( ) . positive ( 'must be positive' )
2024-08-04 00:51:15 +00:00
. when ( [ 'tipRandom' , 'tipRandomMax' ] , ( [ enabled , max ] , schema ) => {
2024-07-27 03:37:03 +00:00
let res = schema
2024-08-04 00:51:15 +00:00
if ( ! enabled ) return res
2024-07-27 03:37:03 +00:00
if ( max ) {
res = schema . required ( 'minimum and maximum must either both be omitted or specified' ) . nonNullable ( )
}
return res . lessThan ( max , 'must be less than maximum' )
} ) ,
tipRandomMax : intValidator . nullable ( ) . positive ( 'must be positive' )
2024-08-04 00:51:15 +00:00
. when ( [ 'tipRandom' , 'tipRandomMin' ] , ( [ enabled , min ] , schema ) => {
2024-07-27 03:37:03 +00:00
let res = schema
2024-08-04 00:51:15 +00:00
if ( ! enabled ) return res
2024-07-27 03:37:03 +00:00
if ( min ) {
res = schema . required ( 'minimum and maximum must either both be omitted or specified' ) . nonNullable ( )
}
return res . moreThan ( min , 'must be more than minimum' )
} ) ,
2023-07-24 22:50:12 +00:00
fiatCurrency : string ( ) . required ( 'required' ) . oneOf ( SUPPORTED _CURRENCIES ) ,
2023-10-21 00:09:41 +00:00
withdrawMaxFeeDefault : intValidator . required ( 'required' ) . positive ( 'must be positive' ) ,
2023-07-24 22:50:12 +00:00
nostrPubkey : string ( ) . nullable ( )
2023-02-08 19:38:04 +00:00
. or ( [
2023-07-24 22:50:12 +00:00
string ( ) . nullable ( ) . matches ( NOSTR _PUBKEY _HEX , 'must be 64 hex chars' ) ,
string ( ) . nullable ( ) . matches ( NOSTR _PUBKEY _BECH32 , 'invalid bech32 encoding' ) ] , 'invalid pubkey' ) ,
nostrRelays : array ( ) . of (
2024-09-18 20:42:48 +00:00
string ( ) . ws ( ) . transform ( relay => relay . startsWith ( 'wss://' ) ? relay : ` wss:// ${ relay } ` )
2023-02-08 19:38:04 +00:00
) . max ( NOSTR _MAX _RELAY _NUM ,
2023-08-23 20:29:55 +00:00
( { max , value } ) => ` ${ Math . abs ( max - value . length ) } too many ` ) ,
2023-09-12 17:19:26 +00:00
hideBookmarks : boolean ( ) ,
2024-02-14 19:33:31 +00:00
hideGithub : boolean ( ) ,
hideNostr : boolean ( ) ,
hideTwitter : boolean ( ) ,
2023-09-18 18:57:02 +00:00
hideWalletBalance : boolean ( ) ,
2023-09-18 23:00:16 +00:00
diagnostics : boolean ( ) ,
2024-03-17 14:57:50 +00:00
noReferralLinks : boolean ( ) ,
2024-03-25 00:46:12 +00:00
hideIsContributor : boolean ( ) ,
2024-08-21 14:37:25 +00:00
disableFreebies : boolean ( ) . nullable ( ) ,
2024-08-11 23:47:03 +00:00
satsFilter : intValidator . required ( 'required' ) . min ( 0 , 'must be at least 0' ) . max ( 1000 , 'must be at most 1000' ) ,
2024-03-25 08:53:34 +00:00
zapUndos : intValidator . nullable ( ) . min ( 0 , 'must be greater or equal to 0' )
2024-07-27 03:37:03 +00:00
// exclude from cyclic analysis. see https://github.com/jquense/yup/issues/720
} , [ [ 'tipRandomMax' , 'tipRandomMin' ] ] )
2023-02-08 19:38:04 +00:00
const warningMessage = 'If I logout, even accidentally, I will never be able to access my account again'
2023-07-24 22:50:12 +00:00
export const lastAuthRemovalSchema = object ( {
warning : string ( ) . matches ( warningMessage , 'does not match' ) . required ( 'required' )
2023-02-08 19:38:04 +00:00
} )
2023-07-24 22:50:12 +00:00
export const withdrawlSchema = object ( {
invoice : string ( ) . required ( 'required' ) . trim ( ) ,
2023-02-08 19:38:04 +00:00
maxFee : intValidator . required ( 'required' ) . min ( 0 , 'must be at least 0' )
} )
2023-07-24 22:50:12 +00:00
export const bioSchema = object ( {
2024-10-02 23:14:25 +00:00
text : string ( ) . required ( 'required' ) . trim ( )
2023-02-08 19:38:04 +00:00
} )
2023-07-24 22:50:12 +00:00
export const inviteSchema = object ( {
2023-02-08 19:38:04 +00:00
gift : intValidator . positive ( 'must be greater than 0' ) . required ( 'required' ) ,
limit : intValidator . positive ( 'must be positive' )
} )
Service worker rework, Web Target Share API & Web Push API (#324)
* npm uninstall next-pwa
next-pwa was last updated in August 2022.
There is also an issue which mentions that next-pwa is abandoned (?): https://github.com/shadowwalker/next-pwa/issues/482
But the main reason for me uninstalling it is that it adds a lot of preconfigured stuff which is not necessary for us.
It even lead to a bug since pages were cached without our knowledge.
So I will go with a different PWA approach. This different approach should do the following:
- make it more transparent what the service worker is doing
- gives us more control to configure the service worker and thus making it easier
* Use workbox-webpack-plugin
Every other plugin (`next-offline`, `next-workbox-webpack-plugin`, `next-with-workbox`, ...) added unnecessary configuration which felt contrary to how PWAs should be built.
(PWAs should progressivly enhance the website in small steps, see https://web.dev/learn/pwa/getting-started/#focus-on-a-feature)
These default configurations even lead to worse UX since they made invalid assumptions about stacker.news:
We _do not_ want to cache our start url and we _do not_ want to cache anything unless explicitly told to.
Almost every page on SN should be fresh for the best UX.
To achieve this, by default, the service worker falls back to the network (as if the service worker wasn't there).
Therefore, this should be the simplest configuration with a valid precache and cache busting support.
In the future, we can try to use prefetching to improve performance of navigation requests.
* Add support for Web Share Target API
See https://developer.chrome.com/articles/web-share-target/
* Use Web Push API for push notifications
I followed this (very good!) guide: https://web.dev/notifications/
* Refactor code related to Web Push
* Send push notification to users on events
* Merge notifications
* Send notification to author of every parent recursively
* Remove unused userId param in savePushSubscription
As it should be, the user id is retrieved from the authenticated user in the backend.
* Resubscribe user if push subscription changed
* Update old subscription if oldEndpoint was given
* Allow users to unsubscribe
* Use LTREE operator instead of recursive query
* Always show checkbox for push notifications
* Justify checkbox to end
* Update title of first push notification
* Fix warning from uncontrolled to controlled
* Add comment about Notification.requestPermission
* Fix timestamp
* Catch error on push subscription toggle
* Wrap function bodies in try/catch
* Use Promise.allSettled
* Filter subscriptions by user notification settings
* Fix user notification filter
* Use skipWaiting
---------
Co-authored-by: ekzyis <ek@stacker.news>
2023-07-04 19:36:07 +00:00
2023-07-24 22:50:12 +00:00
export const pushSubscriptionSchema = object ( {
endpoint : string ( ) . url ( ) . required ( 'required' ) . trim ( ) ,
p256dh : string ( ) . required ( 'required' ) . trim ( ) ,
auth : string ( ) . required ( 'required' ) . trim ( )
Service worker rework, Web Target Share API & Web Push API (#324)
* npm uninstall next-pwa
next-pwa was last updated in August 2022.
There is also an issue which mentions that next-pwa is abandoned (?): https://github.com/shadowwalker/next-pwa/issues/482
But the main reason for me uninstalling it is that it adds a lot of preconfigured stuff which is not necessary for us.
It even lead to a bug since pages were cached without our knowledge.
So I will go with a different PWA approach. This different approach should do the following:
- make it more transparent what the service worker is doing
- gives us more control to configure the service worker and thus making it easier
* Use workbox-webpack-plugin
Every other plugin (`next-offline`, `next-workbox-webpack-plugin`, `next-with-workbox`, ...) added unnecessary configuration which felt contrary to how PWAs should be built.
(PWAs should progressivly enhance the website in small steps, see https://web.dev/learn/pwa/getting-started/#focus-on-a-feature)
These default configurations even lead to worse UX since they made invalid assumptions about stacker.news:
We _do not_ want to cache our start url and we _do not_ want to cache anything unless explicitly told to.
Almost every page on SN should be fresh for the best UX.
To achieve this, by default, the service worker falls back to the network (as if the service worker wasn't there).
Therefore, this should be the simplest configuration with a valid precache and cache busting support.
In the future, we can try to use prefetching to improve performance of navigation requests.
* Add support for Web Share Target API
See https://developer.chrome.com/articles/web-share-target/
* Use Web Push API for push notifications
I followed this (very good!) guide: https://web.dev/notifications/
* Refactor code related to Web Push
* Send push notification to users on events
* Merge notifications
* Send notification to author of every parent recursively
* Remove unused userId param in savePushSubscription
As it should be, the user id is retrieved from the authenticated user in the backend.
* Resubscribe user if push subscription changed
* Update old subscription if oldEndpoint was given
* Allow users to unsubscribe
* Use LTREE operator instead of recursive query
* Always show checkbox for push notifications
* Justify checkbox to end
* Update title of first push notification
* Fix warning from uncontrolled to controlled
* Add comment about Notification.requestPermission
* Fix timestamp
* Catch error on push subscription toggle
* Wrap function bodies in try/catch
* Use Promise.allSettled
* Filter subscriptions by user notification settings
* Fix user notification filter
* Use skipWaiting
---------
Co-authored-by: ekzyis <ek@stacker.news>
2023-07-04 19:36:07 +00:00
} )
2023-10-03 19:35:53 +00:00
export const lud18PayerDataSchema = ( k1 ) => object ( {
name : string ( ) ,
pubkey : string ( ) ,
email : string ( ) . email ( 'bad email address' ) ,
identifier : string ( )
} )
2024-01-13 00:09:50 +00:00
// check if something is _really_ a number.
// returns true for every number in this range: [-Infinity, ..., 0, ..., Infinity]
export const isNumber = x => typeof x === 'number' && ! Number . isNaN ( x )
2024-08-13 14:48:30 +00:00
export const toNumber = ( x , min = Number . MIN _SAFE _INTEGER , max = Number . MAX _SAFE _INTEGER ) => {
if ( typeof x === 'undefined' ) {
throw new Error ( 'value is required' )
}
const n = Number ( x )
if ( isNumber ( n ) ) {
if ( x < min || x > max ) {
throw new Error ( ` value ${ x } must be between ${ min } and ${ max } ` )
}
return n
}
throw new Error ( ` value ${ x } is not a number ` )
}
export const toPositiveNumber = ( x ) => toNumber ( x , 0 )
2024-10-14 15:49:06 +00:00
export const deviceSyncSchema = object ( ) . shape ( {
passphrase : string ( ) . required ( 'required' )
. test ( async ( value , context ) => {
const words = value ? value . trim ( ) . split ( /[\s]+/ ) : [ ]
for ( const w of words ) {
try {
await string ( ) . oneOf ( bip39Words ) . validate ( w )
} catch {
return context . createError ( { message : ` ' ${ w } ' is not a valid pairing phrase word ` } )
}
}
if ( words . length < 12 ) {
return context . createError ( { message : 'needs at least 12 words' } )
}
return true
} )
} )