Ticket #283 (new New feature)

Opened 4 years ago

Last modified 19 months ago

Widgetize: giving access to everybody to view a specific widget (token_auth on a per widget basis)

Reported by: matt Owned by:
Priority: normal Milestone: Feature requests
Component: Core Keywords:
Cc: Sensitive: no

Description (last modified by matt) (diff)

At the moment, users can only export widgets if they have made their statistics publicly available. Often, people would be happy to share their number of visits (and show the evolution graph over the last 30 days for example), but they don't want to share other data (keywords, referers, etc.).

At the moment widgets are shown only if stats are avaialble for the anonymous user, or if the user passes its token_auth to the widget. This is a problem as currently token_auth is like having the login + password.

Proposal

  • each website is associated with a website_key that has VIEW access to the website data.
  • this key is the one passed for invoking the widgets.
  • it is expected that this key is Known to external users. Having this key means that all the website reports are readable.
  • during Authentication, in: /plugins/Login/Auth.php there will be a new sql query to select from piwik_site and try and match a website key; if matched, the login used is anonymous. anonymous user has read access but no write access (you can't create websites, users, goals, etc.).

Specification

  • DB changes: new token_auth field of 32 chars in piwik_site
  • Migration: this token_auth must be randomly generated for all existing websites during migration.
  • API: the token_auth is now returned in the website responses from the SitesManager API, eg. in SitesManager.getSiteFromId(). When adding a new website, the token_auth must be generated.
  • Authentication: should be a small change in plugins/Login/Auth.php. Side note: we make sure that when the token_auth is empty in the DB (in case of migration issue for example), the authentication fails.
  • UI: the website_key is now added to all widgets embed fields URLs (for flash invocation, and iframe invocation)

Downside

The downside of this method is that the website_key is available to see all widgets for a website. This is rather open and will be an issue for some websites which will claim that it is not ok to open all the reports to everyone. The alternative would be to have a md5 hash generated for each tuple (widget, website), the Auth would then look in this list to authenticate.

if anyone is interested and wants to build this feature, let us know in the comments

Change History

Changed 3 years ago by matt

  • summary changed from Giving access to everybody to view a specific widget (token_auth on a per widget basis) to Widgetize: giving access to everybody to view a specific widget (token_auth on a per widget basis)

Changed 3 years ago by matt

  • type changed from Bug to New feature

Changed 3 years ago by hass

I'd like to allow the Drupal user to save it's own token_auth in his Drupal user settings. If the User take a look on the reports all the reports need to be accessed with the token_auth. This solution is much better than opening the full system for all anonymous users.

Today this seems not working. If I read the above it should work... sounds like something is broken.

Additional to my "quick" solution it would be great to have the ability to define what widget is accessible by anonymous users.

Changed 3 years ago by vipsoft

  • priority changed from major to critical
  • milestone changed from 2- DigitalVibes to 1 - Piwik 0.4.2

Escalating urgency of resolution.

A better(?) "token_auth" might be: md5(token_auth . widgetName), as it would not require an external site to store a copy of the Piwik user login & password.

Changed 3 years ago by hass

Also an issue on API calls. Keep in mind that the Drupal Piwik Reports module attaches the token_auth to the JSON URLs to get JSON data that will be processed in a loop to build a HTML table and fill it with the data I receive from Piwik. This is "Ajax" with an auth key.

Changed 3 years ago by hass

See here how this works (I'm grabbing the URL with token_auth from a plain text value in source code):

 http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/piwik/modules/piwik_reports/piwik_reports.js?revision=1.1.2.9&view=markup&pathrev=DRUPAL-6--1

Changed 3 years ago by matt

  • description modified (diff)

Changed 3 years ago by matt

  • description modified (diff)

Changed 3 years ago by matt

(In [1300]) moving auth refs #283

Changed 3 years ago by alivenk

Changed 3 years ago by albass

Changed 3 years ago by vipsoft

  • milestone changed from 1 - Piwik 0.4.3 to 2- DigitalVibes

Changed 2 years ago by domtop

Changed 2 years ago by Smith

Changed 2 years ago by Smith

Changed 2 years ago by spomoni

Changed 2 years ago by matt

  • sensitive unset
  • description modified (diff)

Changed 2 years ago by euromark

i didnt find this old ticket via search accidently opened a new one under #1126

anyway - i described pretty much the same problem it would be awesome if i'd get into one of the next releases in order to actually use widgets without releasing ALL statistics (which is not a very good idea after all) to the public.

Changed 2 years ago by vnese

I definitely love to have this feature. I am building a web app that using piwik to show the statistics widgets to the users. Let me know if I can help in anything.

Changed 2 years ago by matt

nass you are right. Until this feature is implemented, we should at least allow token_auth authentication in Widgetize calls, to allow widgets to be displayed with the token_auth of a user with view permissions. I reopened #235

Changed 23 months ago by matt

  • milestone changed from 2 - Piwik 0.7 - DigitalVibes to 5 - Piwik 1.0 - Stable release

token_auth works with widgets, postponing this feature request to later

Changed 20 months ago by matt

  • milestone changed from 4 - Piwik 1.0 - Stable release to Features requests - after Piwik 1.0

Changed 19 months ago by matt

  • priority changed from critical to normal
Note: See TracTickets for help on using tickets.