Skip to content

Commit

Permalink
Merge branch 'test' of github.com:vysheng/tg
Browse files Browse the repository at this point in the history
  • Loading branch information
V V committed Nov 30, 2015
2 parents 59e5e8e + 3abec73 commit 6af53f1
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 3 deletions.
1 change: 1 addition & 0 deletions README-LUA
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Function_list (arguments are listed aside from cb_function and cb_extra, :
load_document_thumb(msg)

chat_info (chat)
channel_info (channel)
user_info (user)

get_history (peer, limit)
Expand Down
50 changes: 47 additions & 3 deletions lua-tg.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,7 @@ enum lua_query_type {
lq_load_video_thumb,
lq_load_video,
lq_chat_info,
lq_channel_info,
lq_user_info,
lq_history,
lq_chat_add_user,
Expand Down Expand Up @@ -710,7 +711,8 @@ enum lua_query_type {
lq_send_location,
lq_extf,
lq_import_chat_link,
lq_export_chat_link
lq_export_chat_link,
lq_channel_invite_user
};

struct lua_query_extra {
Expand Down Expand Up @@ -1034,6 +1036,38 @@ void lua_secret_chat_cb (struct tgl_state *TLSR, void *cb_extra, int success, st
free (cb);
}

void lua_channel_cb (struct tgl_state *TLSR, void *cb_extra, int success, struct tgl_channel *C) {
assert (TLSR == TLS);
struct lua_query_extra *cb = cb_extra;
lua_settop (luaState, 0);
//lua_checkstack (luaState, 20);
my_lua_checkstack (luaState, 20);

lua_rawgeti (luaState, LUA_REGISTRYINDEX, cb->func);
lua_rawgeti (luaState, LUA_REGISTRYINDEX, cb->param);

lua_pushnumber (luaState, success);

if (success) {
push_peer (C->id, (void *)C);
} else {
lua_pushboolean (luaState, 0);
}

assert (lua_gettop (luaState) == 4);

int r = ps_lua_pcall (luaState, 3, 0, 0);

luaL_unref (luaState, LUA_REGISTRYINDEX, cb->func);
luaL_unref (luaState, LUA_REGISTRYINDEX, cb->param);

if (r) {
logprintf ("lua: %s\n", lua_tostring (luaState, -1));
}

free (cb);
}

void lua_user_cb (struct tgl_state *TLSR, void *cb_extra, int success, struct tgl_user *C) {
assert (TLSR == TLS);
struct lua_query_extra *cb = cb_extra;
Expand Down Expand Up @@ -1211,6 +1245,10 @@ void lua_do_all (void) {
tgl_do_get_chat_info (TLS, lua_ptr[p + 1].peer_id, 0, lua_chat_cb, lua_ptr[p].ptr);
p += 2;
break;
case lq_channel_info:
tgl_do_get_channel_info (TLS, lua_ptr[p + 1].peer_id, 0, lua_channel_cb, lua_ptr[p].ptr);
p += 2;
break;
case lq_user_info:
tgl_do_get_user_info (TLS, lua_ptr[p + 1].peer_id, 0, lua_user_cb, lua_ptr[p].ptr);
p += 2;
Expand All @@ -1220,11 +1258,11 @@ void lua_do_all (void) {
p += 3;
break;
case lq_chat_add_user:
tgl_do_add_user_to_chat (TLS, lua_ptr[p + 1].peer_id, lua_ptr[p + 1].peer_id, 10, lua_empty_cb, lua_ptr[p].ptr);
tgl_do_add_user_to_chat (TLS, lua_ptr[p + 1].peer_id, lua_ptr[p + 2].peer_id, 10, lua_empty_cb, lua_ptr[p].ptr);
p += 3;
break;
case lq_chat_del_user:
tgl_do_del_user_from_chat (TLS, lua_ptr[p + 1].peer_id, lua_ptr[p + 1].peer_id, lua_empty_cb, lua_ptr[p].ptr);
tgl_do_del_user_from_chat (TLS, lua_ptr[p + 1].peer_id, lua_ptr[p + 2].peer_id, lua_empty_cb, lua_ptr[p].ptr);
p += 3;
break;
case lq_add_contact:
Expand Down Expand Up @@ -1303,6 +1341,10 @@ void lua_do_all (void) {
tgl_do_send_location (TLS, lua_ptr[p + 1].peer_id, lua_ptr[p + 2].dnum, lua_ptr[p + 3].dnum, 0, lua_msg_cb, lua_ptr[p].ptr);
p += 4;
break;
case lq_channel_invite_user:
tgl_do_channel_invite_user (TLS, lua_ptr[p + 1].peer_id, lua_ptr[p + 2].peer_id, lua_empty_cb, lua_ptr[p].ptr);
p += 3;
break;
/*
lq_delete_msg,
lq_restore_msg,
Expand Down Expand Up @@ -1379,6 +1421,7 @@ struct lua_function functions[] = {
{"fwd_msg", lq_fwd, { lfp_peer, lfp_msg, lfp_none }},
{"fwd_media", lq_fwd_media, { lfp_peer, lfp_msg, lfp_none }},
{"chat_info", lq_chat_info, { lfp_chat, lfp_none }},
{"channel_info", lq_channel_info, { lfp_channel, lfp_none }},
{"user_info", lq_user_info, { lfp_user, lfp_none }},
{"get_history", lq_history, { lfp_peer, lfp_nonnegative_number, lfp_none }},
{"chat_add_user", lq_chat_add_user, { lfp_chat, lfp_user, lfp_none }},
Expand All @@ -1403,6 +1446,7 @@ struct lua_function functions[] = {
{"ext_function", lq_extf, { lfp_string, lfp_none }},
{"import_chat_link", lq_import_chat_link, { lfp_string, lfp_none }},
{"export_chat_link", lq_export_chat_link, { lfp_chat, lfp_none }},
{"channel_invite_user", lq_channel_invite_user, { lfp_channel, lfp_user, lfp_none }},
{ 0, 0, { lfp_none}}
};

Expand Down

0 comments on commit 6af53f1

Please sign in to comment.