Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
7715e0be
Unverified
Commit
7715e0be
authored
7 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
Add Link to enable GA API to admin add database page
parent
5a73570b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/metabase/components/DatabaseDetailsForm.jsx
+30
-4
30 additions, 4 deletions
frontend/src/metabase/components/DatabaseDetailsForm.jsx
with
30 additions
and
4 deletions
frontend/src/metabase/components/DatabaseDetailsForm.jsx
+
30
−
4
View file @
7715e0be
import
React
,
{
Component
}
from
"
react
"
;
import
PropTypes
from
"
prop-types
"
;
import
cx
from
"
classnames
"
;
import
{
t
}
from
'
c-3po
'
;
import
{
t
,
jt
}
from
'
c-3po
'
;
import
FormField
from
"
metabase/components/form/FormField.jsx
"
;
import
FormLabel
from
"
metabase/components/form/FormLabel.jsx
"
;
import
FormMessage
from
"
metabase/components/form/FormMessage.jsx
"
;
...
...
@@ -20,6 +20,10 @@ const AUTH_URL_PREFIXES = {
googleanalytics
:
'
https://accounts.google.com/o/oauth2/auth?access_type=offline&redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=code&scope=https://www.googleapis.com/auth/analytics.readonly&client_id=
'
,
};
const
ENABLE_API_PREFIXES
=
{
googleanalytics
:
'
https://console.developers.google.com/apis/api/analytics.googleapis.com/overview?project=
'
};
const
CREDENTIALS_URL_PREFIXES
=
{
bigquery
:
'
https://console.developers.google.com/apis/credentials/oauthclient?project=
'
,
googleanalytics
:
'
https://console.developers.google.com/apis/credentials/oauthclient?project=
'
,
...
...
@@ -215,7 +219,7 @@ export default class DatabaseDetailsForm extends Component {
credentialsURLLink
=
(
<
div
className
=
"flex align-center Form-offset"
>
<
div
className
=
"Grid-cell--top"
>
{
t
`<a href=
$
{
credentialsURL
}
target='_blank'>Click here</a> to generate a Client ID and Client Secret for your project.`
}
{
j
t
`
${
<
a
href
=
{
credentialsURL
}
target
=
'
_blank
'
>
Click
here
<
/a>
}
to generate a Client ID and Client Secret for your project.`
}
{
t
`Choose "Other" as the application type. Name it whatever you'd like.`
}
</div>
</div>);
...
...
@@ -230,14 +234,14 @@ export default class DatabaseDetailsForm extends Component {
);
} else if (field.name === 'auth-code' && AUTH_URL_PREFIXES[engine]) {
let { details } = this.state;
le
t
clientID
=
details
&&
details
[
'
client-id
'
];
cons
t clientID = details && details['client-id'];
var authURLLink;
if (clientID) {
let authURL = AUTH_URL_PREFIXES[engine] + clientID;
authURLLink = (
<div className="flex align-center Form-offset">
<div className="Grid-cell--top">
{
t
`<a href=
$
{
authURL
}
target='_blank'>Click here</a> to get an auth code`
}
{
j
t`
$
{
<
a
href
=
{
authURL
}
target
=
'_blank'
>
Click here
</
a
>
}
to
get
an
auth
code
`}
{ engine === "bigquery" &&
<span> (or <a href={AUTH_URL_PREFIXES["bigquery_with_drive"] + clientID} target='_blank'>{t`
with
Google
Drive
permissions
`}</a>)</span>
}
...
...
@@ -245,11 +249,33 @@ export default class DatabaseDetailsForm extends Component {
</div>);
}
// for Google Analytics we need to show a link for people to go to the Console to enable the GA API
let enableAPILink;
// projectID is just the first numeric part of the clientID.
// e.g. clientID might be 123436115855-q8z42hilmjf8iplnnu49n7jbudmxxdf.apps.googleusercontent.com
// then projecID would be 12343611585
const projectID = clientID && (clientID.match(/^\d+/) || [])[0];
if (ENABLE_API_PREFIXES[engine] && projectID) {
// URL looks like https://console.developers.google.com/apis/api/analytics.googleapis.com/overview?project=12343611585
const enableAPIURL = ENABLE_API_PREFIXES[engine] + projectID;
enableAPILink = (
<div className="flex align-center Form-offset">
<div className="Grid-cell--top">
{t`
To
use
Metabase
with
this
data
you
must
enable
API
access
in
the
Google
Developers
Console
.
`}
</div>
<div className="Grid-cell--top ml1">
{jt`
$
{<
a
href
=
{
enableAPIURL
}
target
=
'_blank'
>
Click here
</
a
>}
to
go
to
the
console
if
you
haven
'
t already done so.`}
</div>
</div>
);
}
return (
<FormField key=
'
auth
-
code
'
field-name=
'
auth
-
code
'
>
<FormLabel title={field[
'
display
-
name
'
]} field-name=
'
auth
-
code
'
></FormLabel>
{authURLLink}
{this.renderFieldInput(field, fieldIndex)}
{enableAPILink}
</FormField>
);
} else {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment