Feature #3351

Remove all independent settings for Astakos URLs

Added by Vangelis Koukis about 11 years ago.

Status:Assigned Start date:03/01/2013
Priority:High Due date:
Assignee:Sofia Papagiannaki % Done:

0%

Category:Astakos Spent time: -
Target version:0.14.0

Description

Remove all independent settings for URLS under the /astakos URL space, e.g., /astakos/feedback
from the configuration files.

  • Default values: dependent on the value of ASTAKOS_URL
  • Retain the ability of the administrator to modify them

Proposed pseudo-implementation:

effective_ASTAKOS_URL = getattr(synnefo.settings, ASTAKOS_URL, "https://accounts.example.synnefo.org")
effective_ASTAKOS_FEEDBACK_URL = getattr(synnefo.settings, ASTAKOS_FEEDBACK_URL, "%s/feedback" % effective_ASTAKOS_URL)

Associated revisions

Revision ac0760b2
Added by Sofia Papagiannaki about 11 years ago

Make astakos URLs configurable

Refs: #3351
Refs: #3340

  • Define a general astakos URL prefix
    (ASTAKOS_GENERAL_URL_PREFIX setting) that precedes
    all the astakos URLs. By default is '/'.
  • Define a views astakos URL prefix
    (ASTAKOS_VIEWS_URL_PREFIX setting) that precedes
    all the astakos views URLs. By default is
    `urlparse.urljoin(ASTAKOS_GENERAL_URL_PREFIX, 'im/').
  • Define an api astakos URL prefix
    (ASTAKOS_API_URL_PREFIX setting) that precedes all
    the astakos api calls. By default is
    `urlparse.urljoin(GENERAL_URL_PREFIX, '')`
  • Permit api call URL override.
  • Expose authenticate, get_services, get_menu
    calls also under the api URL prefix. Currently
    they are also available under /im prefix.
    Maybe consider in the the future to keep them only
    under api URL prefix.
Note that possible changes to the default astakos
URL configurations may require the appropriate
changes also to the following settings:
  • CLOUDBAR_SERVICES_URL
  • CLOUDBAR_MENU_URL
  • PITHOS_AUTHENTICATION_URL
  • PITHOS_USER_CATALOG_URL
  • PITHOS_USER_FEEDBACK_URL
  • PITHOS_USER_LOGIN_URL
  • PITHOS_UI_LOGIN_URL
  • PITHOS_UI_FEEDBACK_URL
  • UI_LOGIN_URL
  • UI_LOGOUT_URL
  • ASTAKOS_URL

Also available in: Atom PDF