當前位置: 首頁>>代碼示例>>Python>>正文


Python DataHubConnection.delete_license_view方法代碼示例

本文整理匯總了Python中core.db.connection.DataHubConnection.delete_license_view方法的典型用法代碼示例。如果您正苦於以下問題:Python DataHubConnection.delete_license_view方法的具體用法?Python DataHubConnection.delete_license_view怎麽用?Python DataHubConnection.delete_license_view使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在core.db.connection.DataHubConnection的用法示例。


在下文中一共展示了DataHubConnection.delete_license_view方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from core.db.connection import DataHubConnection [as 別名]
# 或者: from core.db.connection.DataHubConnection import delete_license_view [as 別名]

#.........這裏部分代碼省略.........
            Collaborator.objects.get(
                user=collab, repo_name=repo, repo_base=self.repo_base).delete()

            result = conn.delete_collaborator(
                repo=repo, collaborator=collaborator)
        return result

    def create_license_view(self, repo, table, view_params, license_id):
        view_sql = self.user_con.get_view_sql(
            repo_base=self.repo_base,
            repo=repo,
            table=table,
            view_params=view_params,
            license_id=license_id)
        license_id = int(license_id)

        license_view_obj, created = LicenseView.objects.get_or_create(
            repo_base=self.repo_base,
            repo_name=repo,
            table=table,
            view_sql=view_sql,
            license_id=license_id)

        # Create view in database
        self.user_con.create_license_view(
            repo_base=self.repo_base,
            repo=repo,
            table=table,
            view_sql=view_sql,
            license_id=license_id)

        return True

    def delete_license_view(self, repo, table, license_view, license_id):
        license_view_obj = LicenseView.objects.filter(
            repo_base=self.repo_base,
            repo_name=repo,
            table=table,
            license_id=license_id)

        if len(license_view_obj) == 1:
            license_view_obj[0].delete()

        # delete actual view
        self.user_con.delete_license_view(
            repo_base=self.repo_base,
            repo=repo,
            license_view=license_view)
        return True

    def list_repo_files(self, repo):
        """
        Lists a repo's files.

        Returns an empty list on bad repo names.

        Raises PermissionDenied on insufficient privileges, even for bad repo
        names.
        """
        # check for permissions
        DataHubManager.has_repo_file_privilege(
            self.username, self.repo_base, repo, 'read')

        # make a directory for files, if it doesn't already exist
        repo_dir = DataHubManager.create_user_data_folder(self.repo_base, repo)
開發者ID:datahuborg,項目名稱:datahub,代碼行數:69,代碼來源:manager.py


注:本文中的core.db.connection.DataHubConnection.delete_license_view方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。