Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
c1e66800
Commit
c1e66800
authored
10 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Begin fleshing out a new Event object
parent
9d532281
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
setup.py
+1
-0
1 addition, 0 deletions
setup.py
synapse/events/__init__.py
+120
-0
120 additions, 0 deletions
synapse/events/__init__.py
synapse/events/builder.py
+74
-0
74 additions, 0 deletions
synapse/events/builder.py
with
195 additions
and
0 deletions
setup.py
+
1
−
0
View file @
c1e66800
...
...
@@ -41,6 +41,7 @@ setup(
"
pynacl
"
,
"
daemonize
"
,
"
py-bcrypt
"
,
"
frozendict>=0.4
"
,
],
dependency_links
=
[
"
https://github.com/matrix-org/syutil/tarball/v0.0.2#egg=syutil-0.0.2
"
,
...
...
This diff is collapsed.
Click to expand it.
synapse/events/__init__.py
0 → 100644
+
120
−
0
View file @
c1e66800
# -*- coding: utf-8 -*-
# Copyright 2014 OpenMarket Ltd
#
# 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.
from
frozendict
import
frozendict
class
_EventInternalMetadata
(
object
):
def
__init__
(
self
,
internal_metadata_dict
):
self
.
__dict__
=
internal_metadata_dict
def
get_dict
(
self
):
return
dict
(
self
.
__dict__
)
class
Event
(
object
):
def
__init__
(
self
,
event_dict
,
internal_metadata_dict
=
{}):
self
.
_signatures
=
event_dict
.
get
(
"
signatures
"
,
{})
self
.
_unsigned
=
event_dict
.
get
(
"
unsigned
"
,
{})
self
.
_original
=
{
k
:
v
for
k
,
v
in
event_dict
.
items
()
if
k
not
in
[
"
signatures
"
,
"
unsigned
"
]
}
self
.
_event_dict
=
frozendict
(
self
.
_original
)
self
.
internal_metadata
=
_EventInternalMetadata
(
internal_metadata_dict
)
@property
def
auth_events
(
self
):
return
self
.
_event_dict
[
"
auth_events
"
]
@property
def
content
(
self
):
return
self
.
_event_dict
[
"
content
"
]
@property
def
event_id
(
self
):
return
self
.
_event_dict
[
"
event_id
"
]
@property
def
hashes
(
self
):
return
self
.
_event_dict
[
"
hashes
"
]
@property
def
origin
(
self
):
return
self
.
_event_dict
[
"
origin
"
]
@property
def
prev_events
(
self
):
return
self
.
_event_dict
[
"
prev_events
"
]
@property
def
prev_state
(
self
):
return
self
.
_event_dict
[
"
prev_state
"
]
@property
def
room_id
(
self
):
return
self
.
_event_dict
[
"
room_id
"
]
@property
def
signatures
(
self
):
return
self
.
_signatures
@property
def
state_key
(
self
):
return
self
.
_event_dict
[
"
state_key
"
]
@property
def
type
(
self
):
return
self
.
_event_dict
[
"
type
"
]
@property
def
unsigned
(
self
):
return
self
.
_unsigned
@property
def
user_id
(
self
):
return
self
.
_event_dict
[
"
sender
"
]
@property
def
sender
(
self
):
return
self
.
_event_dict
[
"
sender
"
]
def
get_dict
(
self
):
d
=
dict
(
self
.
_original
)
d
.
update
({
"
signatures
"
:
self
.
_signatures
,
"
unsigned
"
:
self
.
_unsigned
,
})
return
d
def
get_internal_metadata_dict
(
self
):
return
self
.
internal_metadata
.
get_dict
()
def
get_pdu_json
(
self
,
time_now
=
None
):
pdu_json
=
self
.
get_dict
()
if
time_now
is
not
None
and
"
age_ts
"
in
pdu_json
[
"
unsigned
"
]:
age
=
time_now
-
pdu_json
[
"
unsigned
"
][
"
age_ts
"
]
pdu_json
.
setdefault
(
"
unsigned
"
,
{})[
"
age
"
]
=
int
(
age
)
del
pdu_json
[
"
unsigned
"
][
"
age_ts
"
]
return
pdu_json
\ No newline at end of file
This diff is collapsed.
Click to expand it.
synapse/events/builder.py
0 → 100644
+
74
−
0
View file @
c1e66800
# -*- coding: utf-8 -*-
# Copyright 2014 OpenMarket Ltd
#
# 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.
from
.
import
Event
from
synapse.types
import
EventID
from
synapse.util.stringutils
import
random_string
class
EventBuilder
(
object
):
def
__init__
(
self
,
key_values
=
{}):
self
.
_event_dict
=
dict
(
key_values
)
self
.
_metadata
=
{}
def
update_event_key
(
self
,
key
,
value
):
self
.
_event_dict
[
key
]
=
value
def
update_event_keys
(
self
,
other_dict
):
self
.
_event_dict
.
update
(
other_dict
)
def
update_internal_key
(
self
,
key
,
value
):
self
.
_metadata
[
key
]
=
value
def
build
(
self
):
return
Event
(
self
.
_event_dict
,
self
.
_metadata
,
)
class
EventBuilderFactory
(
object
):
def
__init__
(
self
,
clock
,
hostname
):
self
.
clock
=
clock
self
.
hostname
=
hostname
self
.
event_id_count
=
0
def
create_event_id
(
self
):
i
=
str
(
self
.
event_id_count
)
self
.
event_id_count
+=
1
local_part
=
str
(
int
(
self
.
clock
.
time
()))
+
i
+
random_string
(
5
)
e_id
=
EventID
.
create
(
local_part
,
self
.
hostname
)
return
e_id
.
to_string
()
def
new
(
self
,
key_values
=
{}):
if
"
event_id
"
not
in
key_values
:
key_values
[
"
event_id
"
]
=
self
.
create_event_id
()
time_now
=
self
.
clock
.
time_msec
()
key_values
.
setdefault
(
"
origin
"
,
self
.
hostname
)
key_values
.
setdefault
(
"
origin_server_ts
"
,
time_now
)
if
"
unsigned
"
in
key_values
:
age
=
key_values
[
"
unsigned
"
].
pop
(
"
age
"
,
0
)
key_values
[
"
unsigned
"
].
setdefault
(
"
age_ts
"
,
time_now
-
age
)
return
EventBuilder
(
key_values
=
key_values
,)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment