Skip to content
Snippets Groups Projects
Commit ff1fa0fb authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Add another @cached wrapper, this time on get_presence_state()

parent abcd03af
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,9 @@ ...@@ -13,7 +13,9 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from ._base import SQLBaseStore from twisted.internet import defer
from ._base import SQLBaseStore, cached
class PresenceStore(SQLBaseStore): class PresenceStore(SQLBaseStore):
...@@ -33,6 +35,7 @@ class PresenceStore(SQLBaseStore): ...@@ -33,6 +35,7 @@ class PresenceStore(SQLBaseStore):
desc="has_presence_state", desc="has_presence_state",
) )
@cached()
def get_presence_state(self, user_localpart): def get_presence_state(self, user_localpart):
return self._simple_select_one( return self._simple_select_one(
table="presence", table="presence",
...@@ -41,8 +44,9 @@ class PresenceStore(SQLBaseStore): ...@@ -41,8 +44,9 @@ class PresenceStore(SQLBaseStore):
desc="get_presence_state", desc="get_presence_state",
) )
@defer.inlineCallbacks
def set_presence_state(self, user_localpart, new_state): def set_presence_state(self, user_localpart, new_state):
return self._simple_update_one( ret = yield self._simple_update_one(
table="presence", table="presence",
keyvalues={"user_id": user_localpart}, keyvalues={"user_id": user_localpart},
updatevalues={"state": new_state["state"], updatevalues={"state": new_state["state"],
...@@ -50,6 +54,8 @@ class PresenceStore(SQLBaseStore): ...@@ -50,6 +54,8 @@ class PresenceStore(SQLBaseStore):
"mtime": self._clock.time_msec()}, "mtime": self._clock.time_msec()},
desc="set_presence_state", desc="set_presence_state",
) )
self.get_presence_state.invalidate(user_localpart)
defer.returnValue(ret)
def allow_presence_visible(self, observed_localpart, observer_userid): def allow_presence_visible(self, observed_localpart, observer_userid):
return self._simple_insert( return self._simple_insert(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment