2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-03 12:29:13 -04:00
|
|
|
# Copyright 2014 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# Licensed 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.
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2014-08-14 12:34:37 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2014-08-26 10:20:05 -04:00
|
|
|
from ._base import SQLBaseStore
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class FeedbackStore(SQLBaseStore):
|
|
|
|
|
2014-08-26 09:31:48 -04:00
|
|
|
def _store_feedback_txn(self, txn, event):
|
|
|
|
self._simple_insert_txn(txn, "feedback", {
|
2014-08-13 11:27:14 -04:00
|
|
|
"event_id": event.event_id,
|
2014-08-26 12:49:46 -04:00
|
|
|
"feedback_type": event.content["type"],
|
2014-08-13 11:27:14 -04:00
|
|
|
"room_id": event.room_id,
|
2014-08-26 12:49:46 -04:00
|
|
|
"target_event_id": event.content["target_event_id"],
|
2014-08-13 12:43:34 -04:00
|
|
|
"sender": event.user_id,
|
2014-08-13 11:27:14 -04:00
|
|
|
})
|
|
|
|
|
2014-08-14 12:34:37 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-08-13 11:27:14 -04:00
|
|
|
def get_feedback_for_event(self, event_id):
|
|
|
|
sql = (
|
|
|
|
"SELECT events.* FROM events INNER JOIN feedback "
|
|
|
|
"ON events.event_id = feedback.event_id "
|
|
|
|
"WHERE feedback.target_event_id = ? "
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-08-14 11:58:51 -04:00
|
|
|
rows = yield self._execute_and_decode(sql, event_id)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
defer.returnValue(
|
|
|
|
[
|
|
|
|
self._parse_event_from_row(r)
|
|
|
|
for r in rows
|
|
|
|
]
|
|
|
|
)
|