-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add support for preAuthentication and add Metabase credentials (#…
…3399) * ⚡ Add preAuthentication method to credentials * Improvements * ⚡ Improvements * ⚡ Add feedback * 🔥 Remove comments * ⚡ Add generic type to autheticate method * ⚡ Fix typo * ⚡ Remove console.log and fix indentation * ⚡ Minor improvements * ⚡ Expire credentials in every credential test run Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
- Loading branch information
1 parent
f958e6f
commit 994c89a
Showing
9 changed files
with
290 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
76 changes: 76 additions & 0 deletions
76
packages/nodes-base/credentials/MetabaseApi.credentials.ts
This file contains 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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import { | ||
IAuthenticateGeneric, | ||
ICredentialDataDecryptedObject, | ||
ICredentialTestRequest, | ||
ICredentialType, | ||
IHttpRequestHelper, | ||
INodeProperties, | ||
} from 'n8n-workflow'; | ||
|
||
export class MetabaseApi implements ICredentialType { | ||
name = 'metabaseApi'; | ||
displayName = 'Metabase API'; | ||
documentationUrl = 'metabase'; | ||
properties: INodeProperties[] = [ | ||
{ | ||
displayName: 'Session Token', | ||
name: 'sessionToken', | ||
type: 'hidden', | ||
typeOptions: { | ||
expirable: true, | ||
}, | ||
default: '', | ||
}, | ||
{ | ||
displayName: 'URL', | ||
name: 'url', | ||
type: 'string', | ||
default: '', | ||
}, | ||
{ | ||
displayName: 'Username', | ||
name: 'username', | ||
type: 'string', | ||
default: '', | ||
}, | ||
{ | ||
displayName: 'Password', | ||
name: 'password', | ||
type: 'string', | ||
typeOptions: { | ||
password: true, | ||
}, | ||
default: '', | ||
}, | ||
]; | ||
|
||
// method will only be called if "sessionToken" (the expirable property) | ||
// is empty or is expired | ||
async preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject) { | ||
// make reques to get session token | ||
const url = credentials.url as string; | ||
const { id } = (await this.helpers.httpRequest({ | ||
method: 'POST', | ||
url: `${url.endsWith('/') ? url.slice(0, -1) : url}/api/session`, | ||
body: { | ||
username: credentials.username, | ||
password: credentials.password, | ||
}, | ||
})) as { id: string }; | ||
return { sessionToken: id }; | ||
} | ||
authenticate: IAuthenticateGeneric = { | ||
type: 'generic', | ||
properties: { | ||
headers: { | ||
'X-Metabase-Session': '={{$credentials.sessionToken}}', | ||
}, | ||
}, | ||
}; | ||
test: ICredentialTestRequest = { | ||
request: { | ||
baseURL: '={{$credentials?.url}}', | ||
url: '/api/user/current', | ||
}, | ||
}; | ||
} |
Oops, something went wrong.