Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
tg
Commits
3c32cba0
Commit
3c32cba0
authored
May 12, 2015
by
Vincent Castellano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added get_history and get_history_ex to python bindings
parent
2460901b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
6 deletions
+29
-6
python-tg.c
python-tg.c
+14
-5
tgl-test.py
tgl-test.py
+15
-1
No files found.
python-tg.c
View file @
3c32cba0
...
...
@@ -615,6 +615,7 @@ enum py_query_type {
pq_chat_info
,
pq_user_info
,
pq_history
,
pq_history_ext
,
pq_chat_add_user
,
pq_chat_del_user
,
pq_add_contact
,
...
...
@@ -937,7 +938,7 @@ void py_do_all (void) {
const
char
*
str
;
int
len
;
int
len
,
limit
,
offset
;
PyObject
*
pyObj1
=
NULL
;
PyObject
*
pyObj2
=
NULL
;
PyObject
*
cb_extra
;
...
...
@@ -1006,7 +1007,7 @@ void py_do_all (void) {
if (!M || (M->media.type != tgl_message_media_photo && M->media.type != tgl_message_media_photo_encr && M->media.type != tgl_message_media_document && M->media.type != tgl_message_media_document_encr)) {
py_file_cb (TLS, py_ptr[p], 0, 0);
} else {
if (M->media.type == tgl_message_media_photo) {
, limit, offse, limit, offsett
if (M->media.type == tgl_message_media_photo) {
tgl_do_load_photo (TLS, &M->media.photo, py_file_cb, py_ptr[p]);
} else if (M->media.type == tgl_message_media_document) {
tgl_do_load_document (TLS, &M->media.document, py_file_cb, py_ptr[p]);
...
...
@@ -1036,10 +1037,15 @@ void py_do_all (void) {
case pq_user_info:
tgl_do_get_user_info (TLS, ((tgl_peer_t *)py_ptr[p + 1])->id, 0, py_user_cb, py_ptr[p]);
break;
*/
case
pq_history
:
tgl_do_get_history (TLS, ((tgl_peer_t *)py_ptr[p + 1])->id, (long)py_ptr[p + 2], 0, py_msg_list_cb, py_ptr[p]);
PyArg_ParseTuple
(
args
,
"iiiO"
,
&
peer
.
type
,
&
peer
.
id
,
&
limit
,
&
cb_extra
);
tgl_do_get_history
(
TLS
,
peer
,
limit
,
0
,
py_msg_list_cb
,
cb_extra
);
break
;
case
pq_history_ext
:
PyArg_ParseTuple
(
args
,
"iiiiO"
,
&
peer
.
type
,
&
peer
.
id
,
&
offset
,
&
limit
,
&
cb_extra
);
tgl_do_get_history_ext
(
TLS
,
peer
,
offset
,
limit
,
0
,
py_msg_list_cb
,
cb_extra
);
break
;
*/
case
pq_chat_add_user
:
PyArg_ParseTuple
(
args
,
"iiiiO"
,
&
peer
.
type
,
&
peer
.
id
,
&
peer1
.
type
,
&
peer1
.
id
,
&
cb_extra
);
tgl_do_add_user_to_chat
(
TLS
,
peer
,
peer1
,
100
,
py_msg_cb
,
cb_extra
);
...
...
@@ -1174,6 +1180,7 @@ PyObject* py_fwd_media(PyObject *self, PyObject *args) { return push_py_func(pq_
PyObject
*
py_chat_info
(
PyObject
*
self
,
PyObject
*
args
)
{
return
push_py_func
(
pq_chat_info
,
args
);
}
PyObject
*
py_user_info
(
PyObject
*
self
,
PyObject
*
args
)
{
return
push_py_func
(
pq_chat_info
,
args
);
}
PyObject
*
py_history
(
PyObject
*
self
,
PyObject
*
args
)
{
return
push_py_func
(
pq_history
,
args
);
}
PyObject
*
py_history_ext
(
PyObject
*
self
,
PyObject
*
args
)
{
return
push_py_func
(
pq_history_ext
,
args
);
}
PyObject
*
py_chat_add_user
(
PyObject
*
self
,
PyObject
*
args
)
{
return
push_py_func
(
pq_chat_add_user
,
args
);
}
PyObject
*
py_chat_del_user
(
PyObject
*
self
,
PyObject
*
args
)
{
return
push_py_func
(
pq_chat_del_user
,
args
);
}
PyObject
*
py_add_contact
(
PyObject
*
self
,
PyObject
*
args
)
{
return
push_py_func
(
pq_add_contact
,
args
);
}
...
...
@@ -1230,6 +1237,7 @@ static PyMethodDef py_tgl_methods[] = {
{
"chat_info"
,
py_chat_info
,
METH_VARARGS
,
""
},
{
"user_info"
,
py_user_info
,
METH_VARARGS
,
""
},
{
"get_history"
,
py_history
,
METH_VARARGS
,
""
},
{
"get_history_ext"
,
py_history_ext
,
METH_VARARGS
,
""
},
{
"chat_add_user"
,
py_chat_add_user
,
METH_VARARGS
,
""
},
{
"chat_del_user"
,
py_chat_del_user
,
METH_VARARGS
,
""
},
{
"add_contact"
,
py_add_contact
,
METH_VARARGS
,
""
},
...
...
@@ -1272,13 +1280,14 @@ MOD_INIT(tgl)
return
MOD_SUCCESS_VAL
(
m
);
}
/*
extern int safe_quit;
static int safe_quit_from_py() {
Py_Finalize();
safe_quit = 1;
return 1;
}
*/
void
py_init
(
const
char
*
file
)
{
if
(
!
file
)
{
return
;
}
...
...
tgl-test.py
View file @
3c32cba0
import
tgl
import
pprint
from
functools
import
partial
our_id
=
0
pp
=
pprint
.
PrettyPrinter
(
indent
=
4
)
...
...
@@ -20,6 +22,15 @@ def msg_cb(success, msg):
pp
.
pprint
(
success
)
pp
.
pprint
(
msg
)
HISTORY_QUERY_SIZE
=
100
def
history_cb
(
msg_list
,
ptype
,
pid
,
success
,
msgs
):
print
(
len
(
msgs
))
msg_list
.
extend
(
msgs
)
print
(
len
(
msg_list
))
if
len
(
msgs
)
==
HISTORY_QUERY_SIZE
:
tgl
.
get_history_ext
(
ptype
,
pid
,
len
(
msg_list
),
HISTORY_QUERY_SIZE
,
partial
(
history_cb
,
msg_list
,
ptype
,
pid
));
def
on_msg_receive
(
msg
):
if
msg
[
"out"
]
and
not
binlog_done
:
return
;
...
...
@@ -39,6 +50,10 @@ def on_msg_receive(msg):
print
(
"SENDING PONG"
)
tgl
.
send_msg
(
ptype
,
pid
,
"PONG!"
,
msg_cb
)
if
text
.
startswith
(
"!loadhistory"
):
msg_list
=
[]
tgl
.
get_history_ext
(
ptype
,
pid
,
0
,
HISTORY_QUERY_SIZE
,
partial
(
history_cb
,
msg_list
,
ptype
,
pid
));
def
on_secret_chat_update
(
peer
,
types
):
return
"on_secret_chat_update"
...
...
@@ -48,7 +63,6 @@ def on_user_update():
def
on_chat_update
():
pass
# Set callbacks
tgl
.
set_on_binlog_replay_end
(
on_binlog_replay_end
)
tgl
.
set_on_get_difference_end
(
on_get_difference_end
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment