-
Notifications
You must be signed in to change notification settings - Fork 325
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
feat: show full rpc backend version #1294
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -230,6 +230,25 @@ export default async function init (inQuickImport = false) { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
handler(message) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
async function fetchKuboRpcBackendVersion () { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// prefer AgentVersion string from 'ipfs id' , but if that fails, use 'ipfs version' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const id = await ipfs.id() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (id) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return id.agentVersion | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} catch (_) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const v = await ipfs.version() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (v) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return v.commit ? v.version + '/' + v.commit : v.version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} catch (_) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return null | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. ❗ woah
Suggested change
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. Thanks, applied in 90f32c8 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
async function sendStatusUpdateToBrowserAction () { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!browserActionPort) return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const currentTab = await browser.tabs.query({ active: true, currentWindow: true }).then(tabs => tabs[0]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -250,14 +269,9 @@ export default async function init (inQuickImport = false) { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
newVersion: state.dismissedUpdate !== version ? version : null, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
currentTab | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const v = await ipfs.version() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (v) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
info.gatewayVersion = v.commit ? v.version + '/' + v.commit : v.version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} catch (error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
info.gatewayVersion = null | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
info.kuboRpcBackendVersion = await fetchKuboRpcBackendVersion() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (state.active && info.currentTab) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const url = info.currentTab.url | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
info.isIpfsContext = ipfsPathValidator.isIpfsPageActionsContext(url) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ export default (state, emitter) => { | |
publicSubdomainGatewayUrl: null, | ||
gatewayAddress: null, | ||
swarmPeers: null, | ||
gatewayVersion: null, | ||
kuboRpcBackendVersion: null, | ||
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. ℹ️ renamed to make it clear this is version of RPC backend, and not gateway. |
||
isApiAvailable: false, | ||
// isRedirectContext | ||
currentTab: null, | ||
|
@@ -215,7 +215,7 @@ export default (state, emitter) => { | |
if (!state.active) { | ||
state.gatewayAddress = state.pubGwURLString | ||
state.ipfsApiUrl = null | ||
state.gatewayVersion = null | ||
state.kuboRpcBackendVersion = null | ||
state.swarmPeers = null | ||
state.isIpfsOnline = false | ||
} | ||
|
@@ -241,13 +241,13 @@ export default (state, emitter) => { | |
state.isApiAvailable = state.active && !browser.extension.inIncognitoContext // https://github.com/ipfs-shipyard/ipfs-companion/issues/243 | ||
state.swarmPeers = !state.active || status.peerCount === -1 ? null : status.peerCount | ||
state.isIpfsOnline = state.active && status.peerCount > -1 | ||
state.gatewayVersion = state.active && status.gatewayVersion ? status.gatewayVersion : null | ||
state.kuboRpcBackendVersion = state.active && status.kuboRpcBackendVersion ? status.kuboRpcBackendVersion : null | ||
state.ipfsApiUrl = state.active ? status.apiURLString : null | ||
} else { | ||
state.ipfsNodeType = 'external' | ||
state.swarmPeers = null | ||
state.isIpfsOnline = false | ||
state.gatewayVersion = null | ||
state.kuboRpcBackendVersion = null | ||
state.isIpfsContext = false | ||
state.isRedirectContext = false | ||
} | ||
|
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.
ℹ️ this was not used anywhere