Created
August 1, 2016 02:40
-
-
Save terenceponce/ef7e1ff60e99afb2574a8c44adfec0f7 to your computer and use it in GitHub Desktop.
Looker embed integration
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
require 'cgi' | |
require 'securerandom' | |
require 'uri' | |
require 'base64' | |
require 'json' | |
require 'openssl' | |
module LookerEmbedClient | |
def self.created_signed_embed_url(options) | |
# looker options | |
secret = options[:secret] | |
host = options[:host] | |
# user options | |
json_external_user_id = options[:external_user_id].to_json | |
json_first_name = options[:first_name].to_json | |
json_last_name = options[:last_name].to_json | |
json_permissions = options[:permissions].to_json | |
json_models = options[:models].to_json | |
json_access_filters = options[:access_filters].to_json | |
# url/session specific options | |
embed_path = '/login/embed' + CGI.escape(options[:embed_url]) | |
json_session_length = options[:session_length].to_json | |
json_force_logout_login = options[:force_logout_login].to_json | |
# computed options | |
json_time = Time.now.to_i.to_json | |
json_nonce = SecureRandom.hex(16).to_json | |
# compute signature | |
string_to_sign = [host, embed_path, json_nonce, json_time, | |
json_session_length, json_external_user_id, json_permissions, | |
json_models, json_access_filters].join("\n") | |
signature = Base64.encode64( | |
OpenSSL::HMAC.digest( | |
OpenSSL::Digest.new('sha1'), | |
secret, | |
string_to_sign.force_encoding("utf-8"))).strip | |
# construct query string | |
query_params = { | |
nonce: json_nonce, | |
time: json_time, | |
session_length: json_session_length, | |
external_user_id: json_external_user_id, | |
permissions: json_permissions, | |
models: json_models, | |
access_filters: json_access_filters, | |
first_name: json_first_name, | |
last_name: json_last_name, | |
force_logout_login: json_force_logout_login, | |
signature: signature | |
} | |
query_string = URI.encode_www_form(query_params) | |
"#{host}#{embed_path}?#{query_string}" | |
end | |
end | |
def sample | |
fifteen_minutes = 15 * 60 | |
url_data = { | |
host: 'looker-url', | |
secret: 'secret_here', | |
external_user_id: '57', | |
first_name: 'Test Embed', | |
last_name: 'User', | |
permissions: ['see_user_dashboards', 'see_lookml_dashboards', 'access_data', 'see_looks'], | |
models: ['production_replica'], | |
access_filters: { marketplaces: {id: 3} }, | |
session_length: fifteen_minutes, | |
embed_url: "/sso/dashboards/5", | |
force_logout_login: true | |
} | |
url = LookerEmbedClient::created_signed_embed_url(url_data) | |
puts "https://#{url}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment