コード例 #1
0
ファイル: views.py プロジェクト: tosh1ck/osf.io
def index():
    # Check if we're on an institution landing page
    institution = Institution.objects.filter(domains__icontains=request.host, is_deleted=False)
    if institution.exists():
        return redirect('{}institutions/{}/'.format(DOMAIN, institution.get()._id))
    else:
        return use_ember_app()
コード例 #2
0
def index():
    # Check if we're on an institution landing page
    institution = Institution.objects.filter(domains__icontains=request.host, is_deleted=False)
    if institution.exists():
        return redirect('{}institutions/{}/'.format(DOMAIN, institution.get()._id))
    else:
        return use_ember_app()
コード例 #3
0
ファイル: decorators.py プロジェクト: erinspace/osf.io
        def wrapped(*args, **kwargs):
            # Waffle does not enjoy NoneTypes as user values.
            request.user = _get_current_user() or MockUser()

            if waffle.flag_is_active(request, flag_name):
                return use_ember_app()
            else:
                return func(*args, **kwargs)
コード例 #4
0
ファイル: decorators.py プロジェクト: mdicgovbr/osf.io
        def wrapped(*args, **kwargs):
            # Waffle does not enjoy NoneTypes as user values.
            request.user = _get_current_user() or MockUser()

            if waffle.flag_is_active(request, flag_name):
                return use_ember_app()
            else:
                return func(*args, **kwargs)
コード例 #5
0
ファイル: views.py プロジェクト: aaxelb/osf.io
def index():
    # Check if we're on an institution landing page
    institution = Institution.objects.filter(domains__icontains=request.host, is_deleted=False)
    if institution.exists():
        institution = institution.get()
        inst_dict = serialize_institution(institution)
        inst_dict.update({
            'redirect_url': '{}institutions/{}/'.format(DOMAIN, institution._id),
        })
        return inst_dict
    else:
        return use_ember_app()
コード例 #6
0
def index():
    # Check if we're on an institution landing page
    institution = Institution.objects.filter(domains__icontains=request.host, is_deleted=False)
    if institution.exists():
        institution = institution.get()
        inst_dict = serialize_institution(institution)
        inst_dict.update({
            'redirect_url': '{}institutions/{}/'.format(DOMAIN, institution._id),
        })
        return inst_dict
    else:
        return use_ember_app()
コード例 #7
0
 def wrapped(*args, **kwargs):
     if waffle.flag_is_active(request, flag_name):
         return use_ember_app()
     else:
         return func(*args, **kwargs)
コード例 #8
0
ファイル: views.py プロジェクト: qa4osf/osf.io
def resolve_guid(guid, suffix=None):
    """Load GUID by primary key, look up the corresponding view function in the
    routing table, and return the return value of the view function without
    changing the URL.

    :param str guid: GUID primary key
    :param str suffix: Remainder of URL after the GUID
    :return: Return value of proxied view function
    """
    try:
        # Look up
        guid_object = Guid.load(guid)
    except KeyError as e:
        if e.message == 'osfstorageguidfile':  # Used when an old detached OsfStorageGuidFile object is accessed
            raise HTTPError(http.NOT_FOUND)
        else:
            raise e
    if guid_object:
        # verify that the object implements a GuidStoredObject-like interface. If a model
        #   was once GuidStoredObject-like but that relationship has changed, it's
        #   possible to have referents that are instances of classes that don't
        #   have a deep_url attribute or otherwise don't behave as
        #   expected.
        if not hasattr(guid_object.referent, 'deep_url'):
            sentry.log_message('Guid resolved to an object with no deep_url',
                               dict(guid=guid))
            raise HTTPError(http.NOT_FOUND)
        referent = guid_object.referent
        if referent is None:
            logger.error('Referent of GUID {0} not found'.format(guid))
            raise HTTPError(http.NOT_FOUND)
        if not referent.deep_url:
            raise HTTPError(http.NOT_FOUND)

        # Handle file `/download` shortcut with supported types.
        if suffix and suffix.rstrip('/').lower() == 'download':
            file_referent = None
            if isinstance(referent, PreprintService) and referent.primary_file:
                if not referent.is_published:
                    # TODO: Ideally, permissions wouldn't be checked here.
                    # This is necessary to prevent a logical inconsistency with
                    # the routing scheme - if a preprint is not published, only
                    # admins and moderators should be able to know it exists.
                    auth = Auth.from_kwargs(request.args.to_dict(), {})
                    # Check if user isn't a nonetype or that the user has admin/moderator/superuser permissions
                    if auth.user is None or not (auth.user.has_perm(
                            'view_submissions',
                            referent.provider) or referent.node.has_permission(
                                auth.user, permissions.ADMIN)):
                        raise HTTPError(http.NOT_FOUND)

                file_referent = referent.primary_file
            elif isinstance(referent, BaseFileNode) and referent.is_file:
                file_referent = referent

            if file_referent:
                # Extend `request.args` adding `action=download`.
                request.args = request.args.copy()
                request.args.update({'action': 'download'})
                # Do not include the `download` suffix in the url rebuild.
                url = _build_guid_url(urllib.unquote(file_referent.deep_url))
                return proxy_url(url)

        # Handle Ember Applications
        if isinstance(referent, PreprintService):
            if referent.provider.domain_redirect_enabled:
                # This route should always be intercepted by nginx for the branded domain,
                # w/ the exception of `<guid>/download` handled above.
                return redirect(referent.absolute_url, http.MOVED_PERMANENTLY)

            if PROXY_EMBER_APPS:
                resp = requests.get(EXTERNAL_EMBER_APPS['preprints']['server'],
                                    stream=True,
                                    timeout=EXTERNAL_EMBER_SERVER_TIMEOUT)
                return Response(stream_with_context(resp.iter_content()),
                                resp.status_code)

            return send_from_directory(preprints_dir, 'index.html')

        if isinstance(referent, BaseFileNode
                      ) and referent.is_file and referent.target.is_quickfiles:
            if referent.is_deleted:
                raise HTTPError(http.GONE)
            if PROXY_EMBER_APPS:
                resp = requests.get(
                    EXTERNAL_EMBER_APPS['ember_osf_web']['server'],
                    stream=True,
                    timeout=EXTERNAL_EMBER_SERVER_TIMEOUT)
                return Response(stream_with_context(resp.iter_content()),
                                resp.status_code)

            return send_from_directory(ember_osf_web_dir, 'index.html')

        if isinstance(referent, Registration) and not suffix:
            if waffle.flag_is_active(request, 'ember_registries_detail_page'):
                # Route only the base detail view to ember
                if PROXY_EMBER_APPS:
                    resp = requests.get(
                        EXTERNAL_EMBER_APPS['registries']['server'],
                        stream=True,
                        timeout=EXTERNAL_EMBER_SERVER_TIMEOUT)
                    return Response(stream_with_context(resp.iter_content()),
                                    resp.status_code)

                return send_from_directory(registries_dir, 'index.html')

        if isinstance(referent,
                      Node) and not referent.is_registration and suffix:
            page = suffix.strip('/').split('/')[0]
            flag_name = 'ember_project_{}_page'.format(page)
            request.user = _get_current_user() or MockUser()

            if waffle.flag_is_active(request, flag_name):
                use_ember_app()

        url = _build_guid_url(urllib.unquote(referent.deep_url), suffix)
        return proxy_url(url)

    # GUID not found; try lower-cased and redirect if exists
    guid_object_lower = Guid.load(guid.lower())
    if guid_object_lower:
        return redirect(_build_guid_url(guid.lower(), suffix))

    # GUID not found
    raise HTTPError(http.NOT_FOUND)
コード例 #9
0
ファイル: views.py プロジェクト: icereval/osf.io
def resolve_guid(guid, suffix=None):
    """Load GUID by primary key, look up the corresponding view function in the
    routing table, and return the return value of the view function without
    changing the URL.

    :param str guid: GUID primary key
    :param str suffix: Remainder of URL after the GUID
    :return: Return value of proxied view function
    """
    try:
        # Look up
        guid_object = Guid.load(guid)
    except KeyError as e:
        if e.message == 'osfstorageguidfile':  # Used when an old detached OsfStorageGuidFile object is accessed
            raise HTTPError(http.NOT_FOUND)
        else:
            raise e
    if guid_object:
        # verify that the object implements a GuidStoredObject-like interface. If a model
        #   was once GuidStoredObject-like but that relationship has changed, it's
        #   possible to have referents that are instances of classes that don't
        #   have a deep_url attribute or otherwise don't behave as
        #   expected.
        if not hasattr(guid_object.referent, 'deep_url'):
            sentry.log_message(
                'Guid resolved to an object with no deep_url', dict(guid=guid)
            )
            raise HTTPError(http.NOT_FOUND)
        referent = guid_object.referent
        if referent is None:
            logger.error('Referent of GUID {0} not found'.format(guid))
            raise HTTPError(http.NOT_FOUND)
        if not referent.deep_url:
            raise HTTPError(http.NOT_FOUND)

        # Handle file `/download` shortcut with supported types.
        if suffix and suffix.rstrip('/').lower() == 'download':
            file_referent = None
            if isinstance(referent, PreprintService) and referent.primary_file:
                if not referent.is_published:
                    # TODO: Ideally, permissions wouldn't be checked here.
                    # This is necessary to prevent a logical inconsistency with
                    # the routing scheme - if a preprint is not published, only
                    # admins and moderators should be able to know it exists.
                    auth = Auth.from_kwargs(request.args.to_dict(), {})
                    group_helper = GroupHelper(referent.provider)
                    admin_group = group_helper.get_group('admin')
                    mod_group = group_helper.get_group('moderator')
                    # Check if user isn't a nonetype or that the user has admin/moderator permissions
                    if auth.user is None or not (referent.node.has_permission(auth.user, permissions.ADMIN) or (mod_group.user_set.all() | admin_group.user_set.all()).filter(id=auth.user.id).exists()):
                        raise HTTPError(http.NOT_FOUND)
                file_referent = referent.primary_file
            elif isinstance(referent, BaseFileNode) and referent.is_file:
                file_referent = referent

            if file_referent:
                # Extend `request.args` adding `action=download`.
                request.args = request.args.copy()
                request.args.update({'action': 'download'})
                # Do not include the `download` suffix in the url rebuild.
                url = _build_guid_url(urllib.unquote(file_referent.deep_url))
                return proxy_url(url)

        # Handle Ember Applications
        if isinstance(referent, PreprintService):
            if referent.provider.domain_redirect_enabled:
                # This route should always be intercepted by nginx for the branded domain,
                # w/ the exception of `<guid>/download` handled above.
                return redirect(referent.absolute_url, http.MOVED_PERMANENTLY)

            if PROXY_EMBER_APPS:
                resp = requests.get(EXTERNAL_EMBER_APPS['preprints']['server'], stream=True, timeout=EXTERNAL_EMBER_SERVER_TIMEOUT)
                return Response(stream_with_context(resp.iter_content()), resp.status_code)

            return send_from_directory(preprints_dir, 'index.html')

        if isinstance(referent, BaseFileNode) and referent.is_file and referent.node.is_quickfiles:
            if referent.is_deleted:
                raise HTTPError(http.GONE)
            if PROXY_EMBER_APPS:
                resp = requests.get(EXTERNAL_EMBER_APPS['ember_osf_web']['server'], stream=True, timeout=EXTERNAL_EMBER_SERVER_TIMEOUT)
                return Response(stream_with_context(resp.iter_content()), resp.status_code)

            return send_from_directory(ember_osf_web_dir, 'index.html')

        if isinstance(referent, Node) and not referent.is_registration and suffix:
            page = suffix.strip('/').split('/')[0]
            flag_name = 'ember_project_{}_page'.format(page)
            request.user = _get_current_user() or MockUser()

            if waffle.flag_is_active(request, flag_name):
                use_ember_app()

        url = _build_guid_url(urllib.unquote(referent.deep_url), suffix)
        return proxy_url(url)

    # GUID not found; try lower-cased and redirect if exists
    guid_object_lower = Guid.load(guid.lower())
    if guid_object_lower:
        return redirect(
            _build_guid_url(guid.lower(), suffix)
        )

    # GUID not found
    raise HTTPError(http.NOT_FOUND)
コード例 #10
0
ファイル: views.py プロジェクト: aaxelb/osf.io
def dashboard(auth):
    return use_ember_app()
コード例 #11
0
ファイル: node.py プロジェクト: aaxelb/osf.io
def node_forks(auth, node, **kwargs):
    if request.path.startswith('/project/'):
        return redirect('/' + node._id + '/forks/')
    return use_ember_app()
コード例 #12
0
def project_statistics(auth, node, **kwargs):
    if request.path.startswith('/project/'):
        return redirect('/' + node._id + '/analytics/')
    return use_ember_app()
コード例 #13
0
def node_forks(auth, node, **kwargs):
    if request.path.startswith('/project/'):
        return redirect('/' + node._id + '/forks/')
    return use_ember_app()
コード例 #14
0
def node_registrations(auth, node, **kwargs):
    if request.path.startswith('/project/'):
        return redirect('/{}/registrations/'.format(node._id))
    return use_ember_app()
コード例 #15
0
ファイル: node.py プロジェクト: aaxelb/osf.io
def project_statistics(auth, node, **kwargs):
    if request.path.startswith('/project/'):
        return redirect('/' + node._id + '/analytics/')
    return use_ember_app()
コード例 #16
0
def dashboard(auth):
    return use_ember_app()
コード例 #17
0
def view_institution_dashboard(inst_id, **kwargs):
    return use_ember_app()