-
Notifications
You must be signed in to change notification settings - Fork 2.2k
rpcperms: add gRPC codes to errors #5633
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
Open
DarthBenro008
wants to merge
1
commit into
lightningnetwork:master
Choose a base branch
from
DarthBenro008:feat/gRPC-errors
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -5,6 +5,8 @@ import ( | |
"fmt" | ||
"sync" | ||
|
||
"google.golang.org/grpc/status" | ||
|
||
"github.com/btcsuite/btclog" | ||
grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware" | ||
"github.com/lightningnetwork/lnd/lnrpc" | ||
|
@@ -45,29 +47,61 @@ const ( | |
rpcActive | ||
) | ||
|
||
// The following gRPC status codes are assigned in a specific pattern | ||
// The first digit denotes an server related error (1/0) | ||
// The second digit denotes an wallet related error (1/0) | ||
// The last two digits state the error code which ranges from 0-99 | ||
const ( | ||
// ErrWaitingToStartStatusCode defines the gRPC status code as follows: | ||
// Server Error: 1 | ||
// Wallet Error: 0 | ||
// Error Code: 01 | ||
ErrWaitingToStartStatusCode = 1001 | ||
// ErrNoWalletStatusCode defines the gRPC status code as follows: | ||
// Server Error: 0 | ||
// Wallet Error: 1 | ||
// Error Code: 01 | ||
ErrNoWalletStatusCode = 0101 | ||
// ErrWalletLockStatusCode defines the gRPC status code as follows: | ||
// Server Error: 0 | ||
// Wallet Error: 1 | ||
// Error Code: 02 | ||
ErrWalletLockStatusCode = 0102 | ||
// ErrWalletUnlockedStatusCode defines the gRPC status code as follows: | ||
// Server Error: 0 | ||
// Wallet Error: 1 | ||
// Error Code: 03 | ||
ErrWalletUnlockedStatusCode = 0103 | ||
// ErrRPCStartingStatusCode defines the gRPC status code as follows: | ||
// Server Error: 1 | ||
// Wallet Error: 0 | ||
// Error Code: 02 | ||
ErrRPCStartingStatusCode = 1002 | ||
) | ||
|
||
var ( | ||
// ErrWaitingToStart is returned if LND is still wating to start, | ||
// possibly blocked until elected as the leader. | ||
ErrWaitingToStart = fmt.Errorf("waiting to start, RPC services not " + | ||
ErrWaitingToStart = status.Error(ErrWaitingToStartStatusCode, "waiting to start, RPC services not "+ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: wrap at 80 |
||
"available") | ||
|
||
// ErrNoWallet is returned if the wallet does not exist. | ||
ErrNoWallet = fmt.Errorf("wallet not created, create one to enable " + | ||
ErrNoWallet = status.Error(ErrNoWalletStatusCode, "wallet not created, create one to enable "+ | ||
"full RPC access") | ||
|
||
// ErrWalletLocked is returned if the wallet is locked and any service | ||
// other than the WalletUnlocker is called. | ||
ErrWalletLocked = fmt.Errorf("wallet locked, unlock it to enable " + | ||
ErrWalletLocked = status.Error(ErrWalletLockStatusCode, "wallet locked, unlock it to enable "+ | ||
"full RPC access") | ||
|
||
// ErrWalletUnlocked is returned if the WalletUnlocker service is | ||
// called when the wallet already has been unlocked. | ||
ErrWalletUnlocked = fmt.Errorf("wallet already unlocked, " + | ||
ErrWalletUnlocked = status.Error(ErrWalletUnlockedStatusCode, "wallet already unlocked, "+ | ||
"WalletUnlocker service is no longer available") | ||
|
||
// ErrRPCStarting is returned if the wallet has been unlocked but the | ||
// RPC server is not yet ready to accept calls. | ||
ErrRPCStarting = fmt.Errorf("the RPC server is in the process of " + | ||
ErrRPCStarting = status.Error(ErrRPCStartingStatusCode, "the RPC server is in the process of "+ | ||
"starting up, but not yet ready to accept calls") | ||
|
||
// macaroonWhitelist defines methods that we don't require macaroons to | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: can remove newline here