blob: 204130ce8b34a48cff598c44043283a5492325fd [file] [log] [blame]
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from bhdashboard.model import ModelBase
from trac.resource import Resource
from trac.util.datefmt import to_utimestamp, from_utimestamp
class Relation(ModelBase):
"""The Relation table"""
RELATION_ID_DELIMITER = u","
_meta = {'table_name':'bloodhound_relations',
'object_name':'Relation',
'key_fields':['source', 'type', 'destination'],
'non_key_fields':[
'comment',
'author',
{'name': 'time','type': 'int64'},
],
'no_change_fields':['source', 'destination', 'type'],
'unique_fields':[],
}
@property
def resource(self):
"""Allow Relation to be treated as a Resource"""
return Resource('relation', self.prefix)
@property
def when(self):
when_ts = self._data.get("time")
if when_ts is not None:
return from_utimestamp(when_ts)
return None
@when.setter
def when(self, value):
when_ts = to_utimestamp(value)
self._data["time"] = when_ts
def clone_reverted(self, type):
data = self._data.copy()
data["type"] = type
data["source"] = self.destination
data["destination"] = self.source
relation = Relation(self._env)
# pylint: disable=protected-access
relation._data = data
return relation
def clone(self):
data = self._data.copy()
relation = Relation(self._env)
# pylint: disable=protected-access
relation._data = data
return relation
def get_relation_id(self):
return self.RELATION_ID_DELIMITER.join((
self.source,
self.destination,
self.type))
@classmethod
def _parse_relation_id(cls, relation_id):
source, destination, relation_type = relation_id.split(
cls.RELATION_ID_DELIMITER)
return source, destination, relation_type
@classmethod
def load_by_relation_id(cls, env, relation_id):
source, destination, relation_type = cls._parse_relation_id(
relation_id)
return Relation(env, keys=dict(
source=source,
destination=destination,
type=relation_type
))
def __str__(self):
return '%s %s %s' % (self.source, self.type, self.destination)