Example #1
0
    def get_sql(self, scid, tid, clid, data, is_sql=False):
        """
        This function will generate sql from model data
        """
        data = column_utils.convert_length_precision_to_string(data)

        if clid is not None:
            sql = render_template(
                "/".join([self.template_path, self._PROPERTIES_SQL]),
                tid=tid,
                clid=clid,
                show_sys_objects=self.blueprint.show_system_objects)

            status, res = self.conn.execute_dict(sql)
            if not status:
                return internal_server_error(errormsg=res)
            elif len(res['rows']) == 0:
                return gone(
                    gettext("Could not find the column on the server."))
            old_data = dict(res['rows'][0])

            is_view_only = True if 'is_view_only' in old_data and old_data[
                'is_view_only'] else False

            if 'seqcycle' in old_data and old_data['seqcycle'] is False:
                old_data['seqcycle'] = None
            # We will add table & schema as well
            old_data = column_utils.column_formatter(self.conn, tid, clid,
                                                     old_data)

            self._check_type(data, old_data)
            self._parse_acl_to_db_parsing(data, old_data)

            sql = render_template("/".join(
                [self.template_path, self._UPDATE_SQL]),
                                  data=data,
                                  o_data=old_data,
                                  conn=self.conn,
                                  is_view_only=is_view_only)
        else:
            is_error, errmsg, sql = self._get_sql_for_create(data, is_sql)
            if is_error:
                return errmsg

        return sql, data['name'] if 'name' in data else old_data['name']
Example #2
0
    def get_sql(self, scid, tid, clid, data, is_sql=False):
        """
        This function will genrate sql from model data
        """
        data = column_utils.convert_length_precision_to_string(data)

        if clid is not None:
            SQL = render_template(
                "/".join([self.template_path, 'properties.sql']),
                tid=tid,
                clid=clid,
                show_sys_objects=self.blueprint.show_system_objects)

            status, res = self.conn.execute_dict(SQL)
            if not status:
                return internal_server_error(errormsg=res)
            if len(res['rows']) == 0:
                return gone(
                    gettext("Could not find the column on the server."))
            old_data = dict(res['rows'][0])
            # We will add table & schema as well
            old_data = column_utils.column_formatter(self.conn, tid, clid,
                                                     old_data)

            # check type for '[]' in it
            if 'cltype' in old_data:
                old_data['cltype'], old_data['hasSqrBracket'] = \
                    column_utils.type_formatter(old_data['cltype'])

                if 'cltype' in data and data['cltype'] != old_data['cltype']:
                    length, precision, typeval = \
                        self.get_length_precision(data['cltype'])

                    # if new datatype does not have length or precision
                    # then we cannot apply length or precision of old
                    # datatype to new one.
                    if not length:
                        old_data['attlen'] = -1
                    if not precision:
                        old_data['attprecision'] = None

            # If name is not present in data then
            # we will fetch it from old data, we also need schema & table name
            if 'name' not in data:
                data['name'] = old_data['name']

            # Convert acl coming from client in db parsing format
            key = 'attacl'
            if key in data and data[key] is not None:
                if 'added' in data[key]:
                    data[key]['added'] = parse_priv_to_db(
                        data[key]['added'], self.acl)
                if 'changed' in data[key]:
                    data[key]['changed'] = parse_priv_to_db(
                        data[key]['changed'], self.acl)
                if 'deleted' in data[key]:
                    data[key]['deleted'] = parse_priv_to_db(
                        data[key]['deleted'], self.acl)

            SQL = render_template("/".join([self.template_path, 'update.sql']),
                                  data=data,
                                  o_data=old_data,
                                  conn=self.conn)
        else:
            required_args = ['name', 'cltype']

            for arg in required_args:
                if arg not in data:
                    return gettext('-- definition incomplete')

            # We will convert privileges coming from client required
            # in server side format
            if 'attacl' in data:
                data['attacl'] = parse_priv_to_db(data['attacl'], self.acl)
            # If the request for new object which do not have did
            SQL = render_template("/".join([self.template_path, 'create.sql']),
                                  data=data,
                                  conn=self.conn,
                                  is_sql=is_sql)
        return SQL, data['name'] if 'name' in data else old_data['name']
Example #3
0
    def create(self, gid, sid, did, scid, tid):
        """
        This function will creates new the schema object

         Args:
           gid: Server Group ID
           sid: Server ID
           did: Database ID
           scid: Schema ID
           tid: Table ID
        """
        data = request.form if request.form else json.loads(request.data,
                                                            encoding='utf-8')

        for k, v in data.items():
            # comments should be taken as is because if user enters a
            # json comment it is parsed by loads which should not happen
            if k in ('description', ):
                data[k] = v
            else:
                data[k] = json.loads(v,
                                     encoding='utf-8',
                                     cls=ColParamsJSONDecoder)

        required_args = {'name': 'Name', 'cltype': 'Type'}

        for arg in required_args:
            if arg not in data:
                return make_json_response(
                    status=410,
                    success=0,
                    errormsg=gettext(
                        "Could not find the required parameter ({}).").format(
                            required_args[arg]))

        # Parse privilege data coming from client according to database format
        if 'attacl' in data:
            data['attacl'] = parse_priv_to_db(data['attacl'], self.acl)

        # Adding parent into data dict, will be using it while creating sql
        data['schema'] = self.schema
        data['table'] = self.table
        if len(data['table']) == 0:
            return gone(gettext("The specified table could not be found."))

        # check type for '[]' in it
        data['cltype'], data['hasSqrBracket'] = \
            column_utils.type_formatter(data['cltype'])
        data = column_utils.convert_length_precision_to_string(data)

        SQL = render_template("/".join([self.template_path, 'create.sql']),
                              data=data,
                              conn=self.conn)
        status, res = self.conn.execute_scalar(SQL)
        if not status:
            return internal_server_error(errormsg=res)

        # we need oid to to add object in tree at browser
        SQL = render_template("/".join(
            [self.template_path, 'get_position.sql']),
                              tid=tid,
                              data=data)
        status, clid = self.conn.execute_scalar(SQL)
        if not status:
            return internal_server_error(errormsg=tid)

        return jsonify(node=self.blueprint.generate_browser_node(
            clid, tid, data['name'], icon="icon-column"))