1
0
mirror of https://github.com/danog/php-libtgvoip.git synced 2024-11-26 20:04:48 +01:00
php-libtgvoip/main.cpp

609 lines
20 KiB
C++
Raw Normal View History

2017-04-05 03:46:16 +02:00
/*
Copyright 2016-2017 Daniil Gentili
(https://daniil.it)
This file is part of php-libtgvoip.
php-libtgvoip is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the free Software Foundation, either version 3 of the License, or (at your option) any later version.
2017-04-05 03:46:16 +02:00
The PWRTelegram API is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details.
You should have received a copy of the GNU General Public License along with php-libtgvoip.
If not, see <http://www.gnu.org/licenses/>.
*/
2017-07-01 15:12:52 +02:00
#include "main.h"
2017-07-10 12:30:13 +02:00
#include "audio/AudioInputModule.h"
#include "audio/AudioOutputModule.h"
2017-07-01 19:40:28 +02:00
#include <string.h>
#include <wchar.h>
#include <map>
#include <string>
#include <vector>
2017-07-11 21:11:23 +02:00
#include <queue>
2017-07-01 19:40:28 +02:00
#include "libtgvoip/VoIPServerConfig.h"
#include "libtgvoip/threading.h"
#include "libtgvoip/logging.h"
2017-07-01 19:40:28 +02:00
2017-06-11 18:13:25 +02:00
using namespace tgvoip;
2017-06-22 14:48:52 +02:00
using namespace tgvoip::audio;
2017-07-05 23:24:07 +02:00
using namespace std;
2017-04-05 03:46:16 +02:00
2017-07-18 19:16:27 +02:00
void VoIP::__construct(Php::Parameters &params)
{
2017-07-18 19:16:27 +02:00
Php::Value self(this);
Php::Array empty;
self["configuration"] = empty;
self["storage"] = empty;
self["internalStorage"] = empty;
self["internalStorage"]["creator"] = params[0];
2017-07-20 16:02:53 +02:00
self["internalStorage"]["otherID"] = params[1];
self["internalStorage"]["callID"] = params[2];
self["internalStorage"]["madeline"] = params[3];
callState = (int) params[4];
self["internalStorage"]["protocol"] = params[5];
2017-07-18 19:16:27 +02:00
initVoIPController();
}
2017-07-23 17:49:47 +02:00
void VoIP::initVoIPController() {
2017-07-10 12:30:13 +02:00
in=NULL;
out=NULL;
2017-07-01 19:40:28 +02:00
inst = new VoIPController();
2017-07-04 03:04:22 +02:00
2017-07-20 16:24:17 +02:00
outputFile=NULL;
2017-07-20 19:32:03 +02:00
configuringOutput = false;
init_mutex(outputMutex);
2017-07-20 16:24:17 +02:00
init_mutex(inputMutex);
configuringInput = false;
2017-07-09 21:12:01 +02:00
inst->implData = (void *) this;
2017-07-14 21:42:40 +02:00
inst->SetStateCallback([](VoIPController *controller, int state) {
2017-07-09 21:12:01 +02:00
((VoIP *)controller->implData)->state = state;
2017-07-14 21:42:40 +02:00
if (state == STATE_FAILED) {
2017-07-18 20:46:22 +02:00
((VoIP *)controller->implData)->deinitVoIPController();
2017-07-18 19:16:27 +02:00
}
2017-07-01 15:12:52 +02:00
});
2017-07-18 19:16:27 +02:00
inst->Start();
2017-07-18 20:46:22 +02:00
}
2017-07-18 19:16:27 +02:00
2017-07-18 20:46:22 +02:00
void VoIP::deinitVoIPController() {
2017-07-20 16:02:53 +02:00
if (callState != CALL_STATE_ENDED) {
callState = CALL_STATE_ENDED;
2017-07-18 20:46:22 +02:00
delete inst;
2017-07-23 17:49:47 +02:00
2017-07-20 16:24:17 +02:00
lock_mutex(inputMutex);
unlock_mutex(inputMutex);
free_mutex(inputMutex);
lock_mutex(outputMutex);
unlock_mutex(outputMutex);
free_mutex(outputMutex);
while (holdFiles.size()) {
fclose(holdFiles.front());
holdFiles.pop();
}
while (inputFiles.size()) {
fclose(inputFiles.front());
inputFiles.pop();
}
unsetOutputFile();
2017-07-18 20:46:22 +02:00
}
}
2017-07-21 10:40:29 +02:00
Php::Value VoIP::discard(Php::Parameters &params)
2017-07-13 18:03:33 +02:00
{
2017-07-24 18:50:54 +02:00
if (callState == CALL_STATE_ENDED) {
return false;
}
2017-07-20 16:02:53 +02:00
Php::Value self(this);
2017-07-21 00:29:39 +02:00
if (self["internalStorage"]["madeline"].value().instanceOf("danog\\MadelineProto\\MTProto")) {
Php::Array reason;
Php::Array rating;
Php::Value debug;
if (params.size() > 0) {
2017-07-23 17:49:47 +02:00
reason = params[0];
2017-07-21 00:29:39 +02:00
} else {
2017-07-23 17:49:47 +02:00
reason["_"] = "phoneCallDiscardReasonDisconnect";
2017-07-21 00:29:39 +02:00
}
if (params.size() > 1) {
rating = params[1];
}
if (params.size() > 2) {
debug = params[2];
} else debug = true;
2017-07-21 10:40:29 +02:00
self["internalStorage"]["madeline"].value().call("discard_call", self["internalStorage"]["callID"].value(), reason, rating, debug);
2017-07-20 16:02:53 +02:00
}
2017-07-20 19:32:03 +02:00
deinitVoIPController();
2017-07-21 10:40:29 +02:00
return this;
2017-07-13 18:03:33 +02:00
}
2017-07-21 10:40:29 +02:00
Php::Value VoIP::accept()
2017-07-18 20:46:22 +02:00
{
2017-07-22 00:29:47 +02:00
callState = CALL_STATE_ACCEPTED;
2017-07-18 21:48:26 +02:00
Php::Value self(this);
2017-07-21 10:40:29 +02:00
self["internalStorage"]["madeline"].value().call("accept_call", self["internalStorage"]["callID"].value());
return this;
2017-07-18 20:46:22 +02:00
}
2017-07-18 16:17:03 +02:00
void VoIP::__wakeup()
{
2017-07-18 19:16:27 +02:00
Php::Value self(this);
2017-07-24 18:50:54 +02:00
callState = self["internalStorage"]["callState"].value();
if (!self["internalStorage"]["madeline"].value().instanceOf("danog\\MadelineProto\\MTProto") || callState == CALL_STATE_READY) {
2017-07-24 13:56:49 +02:00
callState = CALL_STATE_ENDED;
return;
}
2017-07-22 00:29:47 +02:00
2017-07-18 19:16:27 +02:00
initVoIPController();
2017-07-22 00:29:47 +02:00
2017-07-18 19:16:27 +02:00
if (self["configuration"]) {
2017-07-18 16:17:03 +02:00
parseConfig();
}
2017-07-22 00:29:47 +02:00
if (callState == CALL_STATE_READY) startTheMagic();
2017-07-18 16:17:03 +02:00
}
2017-07-21 10:40:29 +02:00
Php::Value VoIP::__sleep()
2017-07-20 16:02:53 +02:00
{
Php::Value self(this);
self["internalStorage"]["callState"] = callState;
Php::Array res({"internalStorage", "storage", "configuration"});
2017-07-21 10:40:29 +02:00
return res;
2017-07-20 16:02:53 +02:00
}
2017-07-13 18:03:33 +02:00
2017-07-18 19:16:27 +02:00
void VoIP::startTheMagic()
2017-07-01 15:12:52 +02:00
{
inst->Connect();
2017-07-20 16:02:53 +02:00
Php::Value self(this);
self["internalStorage"]["created"] = time(NULL);
callState = CALL_STATE_READY;
2017-07-01 15:12:52 +02:00
}
2017-07-14 21:42:40 +02:00
2017-07-18 19:16:27 +02:00
Php::Value VoIP::whenCreated()
2017-07-18 16:17:03 +02:00
{
2017-07-18 21:48:26 +02:00
Php::Value self(this);
2017-07-20 16:02:53 +02:00
if (self["internalStorage"]["created"]) {
return self["internalStorage"]["created"];
}
return false;
2017-07-18 19:16:27 +02:00
}
Php::Value VoIP::isCreator()
{
2017-07-18 21:48:26 +02:00
Php::Value self(this);
2017-07-18 19:16:27 +02:00
return self["internalStorage"]["creator"];
}
Php::Value VoIP::getOtherID()
{
2017-07-18 21:48:26 +02:00
Php::Value self(this);
2017-07-18 19:16:27 +02:00
return self["internalStorage"]["otherID"];
}
2017-07-24 18:50:54 +02:00
Php::Value VoIP::getMadeline()
{
Php::Value self(this);
return self["internalStorage"]["madeline"];
}
2017-07-19 12:42:01 +02:00
Php::Value VoIP::getProtocol()
{
Php::Value self(this);
return self["internalStorage"]["protocol"];
}
2017-07-18 19:16:27 +02:00
Php::Value VoIP::getCallID()
{
2017-07-18 21:48:26 +02:00
Php::Value self(this);
2017-07-18 19:16:27 +02:00
return self["internalStorage"]["callID"];
2017-07-18 16:17:03 +02:00
}
2017-07-18 19:16:27 +02:00
Php::Value VoIP::getCallState()
2017-07-18 16:17:03 +02:00
{
2017-07-20 16:02:53 +02:00
return callState;
2017-07-18 19:16:27 +02:00
}
2017-07-18 16:17:03 +02:00
2017-07-18 19:16:27 +02:00
Php::Value VoIP::getVisualization()
2017-07-01 15:12:52 +02:00
{
2017-07-18 21:48:26 +02:00
Php::Value self(this);
2017-07-18 19:16:27 +02:00
if (self["internalStorage"]["visualization"]) {
return self["internalStorage"]["visualization"];
}
return false;
}
void VoIP::setVisualization(Php::Parameters &params)
{
2017-07-18 21:48:26 +02:00
Php::Value self(this);
2017-07-18 19:16:27 +02:00
self["internalStorage"]["visualization"] = params[0];
2017-07-14 21:42:40 +02:00
}
2017-07-18 16:17:03 +02:00
2017-07-14 21:42:40 +02:00
void VoIP::parseConfig() {
2017-07-18 21:48:26 +02:00
Php::Value self(this);
2017-07-14 21:42:40 +02:00
voip_config_t cfg;
2017-07-22 15:12:15 +02:00
cfg.recv_timeout = (double) self["configuration"]["recv_timeout"];
cfg.init_timeout = (double) self["configuration"]["init_timeout"];
cfg.data_saving = (int) self["configuration"]["data_saving"];
cfg.enableAEC = (bool) self["configuration"]["enable_AEC"];
cfg.enableNS = (bool) self["configuration"]["enable_NS"];
cfg.enableAGC = (bool) self["configuration"]["enable_AGC"];
if (self["configuration"]["log_file_path"])
2017-07-14 21:42:40 +02:00
{
2017-07-22 15:12:15 +02:00
strncpy(cfg.logFilePath, self["configuration"]["log_file_path"], sizeof(cfg.logFilePath));
2017-07-14 21:42:40 +02:00
cfg.logFilePath[sizeof(cfg.logFilePath) - 1] = 0;
}
else
{
memset(cfg.logFilePath, 0, sizeof(cfg.logFilePath));
}
2017-07-22 15:12:15 +02:00
if (self["configuration"]["stats_dump_file_path"])
2017-07-14 21:42:40 +02:00
{
2017-07-22 15:12:15 +02:00
strncpy(cfg.statsDumpFilePath, self["configuration"]["stats_dump_file_path"], sizeof(cfg.statsDumpFilePath));
2017-07-14 21:42:40 +02:00
cfg.statsDumpFilePath[sizeof(cfg.statsDumpFilePath) - 1] = 0;
}
else
{
memset(cfg.statsDumpFilePath, 0, sizeof(cfg.statsDumpFilePath));
}
inst->SetConfig(&cfg);
2017-07-18 19:16:27 +02:00
Php::Value shared_config = self["configuration"]["shared_config"];
2017-07-18 16:17:03 +02:00
ServerConfig::GetSharedInstance()->Update(shared_config);
2017-07-14 21:42:40 +02:00
2017-07-13 18:03:33 +02:00
char *key = (char *) malloc(256);
2017-07-18 19:16:27 +02:00
memcpy(key, self["configuration"]["auth_key"], 256);
2017-07-18 20:46:22 +02:00
inst->SetEncryptionKey(key, (bool) self["internalStorage"]["creator"]);
2017-07-13 18:03:33 +02:00
free(key);
2017-04-05 03:46:16 +02:00
2017-07-14 21:42:40 +02:00
vector<Endpoint> eps;
2017-07-18 19:16:27 +02:00
Php::Value endpoints = self["configuration"]["endpoints"];
2017-07-18 16:17:03 +02:00
for (int i = 0; i < endpoints.size(); i++)
2017-07-01 15:12:52 +02:00
{
2017-07-18 16:17:03 +02:00
string ip = endpoints[i]["ip"];
string ipv6 = endpoints[i]["ipv6"];
2017-07-19 12:42:01 +02:00
string peer_tag = endpoints[i]["peer_tag"];
2017-04-05 03:46:16 +02:00
2017-07-14 21:42:40 +02:00
IPv4Address v4addr(ip);
IPv6Address v6addr("::0");
2017-07-13 18:03:33 +02:00
unsigned char *pTag = (unsigned char *) malloc(16);
2017-04-05 03:46:16 +02:00
2017-07-01 15:12:52 +02:00
if (ipv6 != "")
{
v6addr = IPv6Address(ipv6);
2017-04-05 03:46:16 +02:00
}
2017-06-11 18:13:25 +02:00
2017-07-19 12:42:01 +02:00
if (peer_tag != "")
2017-07-01 15:12:52 +02:00
{
2017-07-19 12:42:01 +02:00
memcpy(pTag, peer_tag.c_str(), 16);
2017-06-11 18:13:25 +02:00
}
2017-04-05 03:46:16 +02:00
2017-07-18 16:17:03 +02:00
eps.push_back(Endpoint(endpoints[i]["id"], (int32_t)endpoints[i]["port"], v4addr, v6addr, EP_TYPE_UDP_RELAY, pTag));
2017-07-13 18:03:33 +02:00
free(pTag);
2017-04-05 03:46:16 +02:00
}
2017-07-23 17:49:47 +02:00
2017-07-19 12:42:01 +02:00
inst->SetRemoteEndpoints(eps, (bool) self["internalStorage"]["protocol"]["udp_p2p"]);
2017-07-18 19:16:27 +02:00
inst->SetNetworkType(self["configuration"]["network_type"]);
if (self["configuration"]["proxy"]) {
inst->SetProxy(self["configuration"]["proxy"]["protocol"], self["configuration"]["proxy"]["address"], (int32_t) self["configuration"]["proxy"]["port"], self["configuration"]["proxy"]["username"], self["configuration"]["proxy"]["password"]);
}
2017-07-01 15:12:52 +02:00
}
2017-07-11 21:11:23 +02:00
2017-07-20 16:24:17 +02:00
2017-07-13 18:03:33 +02:00
Php::Value VoIP::unsetOutputFile() {
2017-07-23 17:49:47 +02:00
if (outputFile == NULL) {
2017-07-20 16:24:17 +02:00
return false;
}
configuringOutput = true;
lock_mutex(outputMutex);
2017-07-20 19:32:03 +02:00
fflush(outputFile);
2017-07-20 16:24:17 +02:00
fclose(outputFile);
outputFile = NULL;
configuringOutput = false;
unlock_mutex(outputMutex);
2017-07-23 17:49:47 +02:00
2017-07-20 19:32:03 +02:00
return this;
2017-07-20 16:24:17 +02:00
}
Php::Value VoIP::setOutputFile(Php::Parameters &params) {
configuringOutput = true;
lock_mutex(outputMutex);
if (outputFile != NULL) {
fclose(outputFile);
outputFile=NULL;
}
outputFile = fopen(params[0], "wb");
if (outputFile == NULL) {
throw Php::Exception("Could not open file!");
configuringOutput = false;
unlock_mutex(outputMutex);
return false;
}
configuringOutput = false;
unlock_mutex(outputMutex);
2017-07-20 19:32:03 +02:00
return this;
2017-07-11 21:11:23 +02:00
}
2017-07-20 16:24:17 +02:00
2017-07-13 18:03:33 +02:00
Php::Value VoIP::play(Php::Parameters &params) {
2017-07-20 16:24:17 +02:00
FILE *tmp = fopen(params[0], "rb");
if (tmp == NULL) {
throw Php::Exception("Could not open file!");
return false;
2017-07-11 21:11:23 +02:00
}
2017-07-20 16:24:17 +02:00
configuringInput = true;
lock_mutex(inputMutex);
inputFiles.push(tmp);
configuringInput = false;
unlock_mutex(inputMutex);
return this;
2017-07-11 21:11:23 +02:00
}
2017-07-13 18:03:33 +02:00
Php::Value VoIP::playOnHold(Php::Parameters &params) {
2017-07-23 17:49:47 +02:00
configuringInput = true;
2017-07-20 16:24:17 +02:00
FILE *tmp = NULL;
lock_mutex(inputMutex);
while (holdFiles.size()) {
fclose(holdFiles.front());
holdFiles.pop();
}
for (int i = 0; i < params[0].size(); i++) {
tmp = fopen(params[0][i], "rb");
if (tmp == NULL) {
throw Php::Exception("Could not open file!");
configuringInput = false;
unlock_mutex(inputMutex);
return false;
}
holdFiles.push(tmp);
}
configuringInput = false;
unlock_mutex(inputMutex);
2017-07-20 19:32:03 +02:00
return this;
2017-07-11 21:11:23 +02:00
}
2017-07-22 16:25:33 +02:00
Php::Value VoIP::setMicMute(Php::Parameters &params)
2017-07-01 15:12:52 +02:00
{
2017-07-22 16:25:33 +02:00
inst->SetMicMute((bool) params[0]);
return this;
2017-07-01 15:12:52 +02:00
}
2017-07-18 16:17:03 +02:00
2017-07-01 15:12:52 +02:00
void VoIP::debugCtl(Php::Parameters &params)
{
inst->DebugCtl(params[0], params[1]);
}
2017-07-14 21:42:40 +02:00
Php::Value VoIP::getDebugLog()
{
2017-07-20 16:02:53 +02:00
Php::Value data;
string encoded = inst->GetDebugLog();
if (!encoded.empty()) {
data = Php::call("json_decode", encoded, true);
}
return data;
2017-07-14 21:42:40 +02:00
}
2017-07-01 15:12:52 +02:00
Php::Value VoIP::getVersion()
{
return VoIPController::GetVersion();
}
Php::Value VoIP::getPreferredRelayID()
{
return inst->GetPreferredRelayID();
}
Php::Value VoIP::getLastError()
{
return inst->GetLastError();
}
2017-07-14 21:42:40 +02:00
Php::Value VoIP::getDebugString()
{
char *buf = (char *) malloc(10240);
inst->GetDebugString(buf, 10240);
Php::Value returnvalue = buf;
free(buf);
return returnvalue;
}
2017-07-01 15:12:52 +02:00
Php::Value VoIP::getStats()
{
voip_stats_t _stats;
inst->GetStats(&_stats);
2017-07-09 21:12:01 +02:00
Php::Value stats;
2017-07-01 15:12:52 +02:00
stats["bytesSentWifi"] = (int64_t)_stats.bytesSentWifi;
stats["bytesSentMobile"] = (int64_t)_stats.bytesSentMobile;
stats["bytesRecvdWifi"] = (int64_t)_stats.bytesRecvdWifi;
stats["bytesRecvdMobile"] = (int64_t)_stats.bytesRecvdMobile;
return stats;
}
2017-06-17 17:24:34 +02:00
2017-04-05 03:46:16 +02:00
2017-07-09 21:12:01 +02:00
void VoIP::setOutputLevel(Php::Parameters &params) {
2017-07-11 21:11:23 +02:00
out->outputLevel = (double) params[0];
2017-07-01 15:12:52 +02:00
}
2017-04-05 03:46:16 +02:00
2017-07-10 00:06:50 +02:00
Php::Value VoIP::getState()
{
return state;
}
2017-07-13 18:54:59 +02:00
Php::Value VoIP::isPlaying()
{
return playing;
}
2017-07-10 00:06:50 +02:00
Php::Value VoIP::getOutputState()
{
2017-07-13 18:03:33 +02:00
return outputState;
2017-07-10 00:06:50 +02:00
}
Php::Value VoIP::getInputState()
{
2017-07-13 18:03:33 +02:00
return inputState;
2017-07-10 00:06:50 +02:00
}
Php::Value VoIP::getOutputParams()
{
Php::Value params;
2017-07-11 21:11:23 +02:00
params["bitsPerSample"] = out->outputBitsPerSample;
params["sampleRate"] = out->outputSampleRate;
params["channels"] = out->outputChannels;
params["samplePeriod"] = out->outputSamplePeriod;
params["writePeriod"] = out->outputWritePeriod;
params["sampleNumber"] = out->outputSampleNumber;
params["samplesSize"] = out->outputSamplesSize;
params["level"] = out->outputLevel;
2017-07-10 00:06:50 +02:00
return params;
}
Php::Value VoIP::getInputParams()
{
Php::Value params;
2017-07-11 21:11:23 +02:00
params["bitsPerSample"] = in->inputBitsPerSample;
params["sampleRate"] = in->inputSampleRate;
params["channels"] = in->inputChannels;
params["samplePeriod"] = in->inputSamplePeriod;
params["writePeriod"] = in->inputWritePeriod;
params["sampleNumber"] = in->inputSampleNumber;
params["samplesSize"] = in->inputSamplesSize;
2017-07-10 00:06:50 +02:00
return params;
}
2017-04-05 03:46:16 +02:00
extern "C" {
2017-07-23 17:49:47 +02:00
/**
* Function that is called by PHP right after the PHP process
* has started, and that returns an address of an internal PHP
* strucure with all the details and features of your extension
*
* @return void* a pointer to an address that is understood by PHP
*/
PHPCPP_EXPORT void *get_module()
{
// static(!) Php::Extension object that should stay in memory
// for the entire duration of the process (that's why it's static)
static Php::Extension extension("php-libtgvoip", "1.0");
// description of the class so that PHP knows which methods are accessible
Php::Class<VoIP> voip("VoIP");
voip.method<&VoIP::getState>("getState", Php::Public | Php::Final);
voip.method<&VoIP::getCallState>("getCallState", Php::Public | Php::Final);
voip.method<&VoIP::getVisualization>("getVisualization", Php::Public | Php::Final);
voip.method<&VoIP::setVisualization>("setVisualization", Php::Public | Php::Final, {Php::ByVal("visualization", Php::Type::Array)});
voip.method<&VoIP::getOtherID>("getOtherID", Php::Public | Php::Final);
voip.method<&VoIP::getProtocol>("getProtocol", Php::Public | Php::Final);
2017-07-24 18:50:54 +02:00
voip.method<&VoIP::getMadeline>("getMadeline", Php::Public | Php::Final);
2017-07-23 17:49:47 +02:00
voip.method<&VoIP::getCallID>("getCallID", Php::Public | Php::Final);
voip.method<&VoIP::isCreator>("isCreator", Php::Public | Php::Final);
voip.method<&VoIP::whenCreated>("whenCreated", Php::Public | Php::Final);
voip.method<&VoIP::isPlaying>("isPlaying", Php::Public | Php::Final);
voip.method<&VoIP::getOutputState>("getOutputState", Php::Public | Php::Final);
voip.method<&VoIP::getInputState>("getInputState", Php::Public | Php::Final);
voip.method<&VoIP::getOutputParams>("getOutputParams", Php::Public | Php::Final);
voip.method<&VoIP::getInputParams>("getInputParams", Php::Public | Php::Final);
voip.method<&VoIP::discard>("__destruct", Php::Public | Php::Final);
voip.method<&VoIP::discard>("discard", Php::Public | Php::Final, {Php::ByVal("reason", Php::Type::Array, false), Php::ByVal("rating", Php::Type::Array, false), Php::ByVal("debug", Php::Type::Bool, false)});
voip.method<&VoIP::accept>("accept", Php::Public | Php::Final);
voip.method<&VoIP::__construct>("__construct", Php::Public | Php::Final, {
Php::ByVal("creator", Php::Type::Bool), Php::ByVal("otherID", Php::Type::Numeric), Php::ByVal("InputPhoneCall", Php::Type::Array), Php::ByRef("madeline", Php::Type::Object), Php::ByVal("callState", Php::Type::Numeric), Php::ByVal("protocol", Php::Type::Array)
});
voip.method<&VoIP::__wakeup>("__wakeup", Php::Public | Php::Final);
voip.method<&VoIP::__sleep>("__sleep", Php::Public | Php::Final);
voip.method<&VoIP::setMicMute>("setMicMute", Php::Public | Php::Final, {
Php::ByVal("type", Php::Type::Bool),
});
voip.method<&VoIP::debugCtl>("debugCtl", Php::Public | Php::Final, {
Php::ByVal("request", Php::Type::Numeric), Php::ByVal("param", Php::Type::Numeric),
});
voip.method<&VoIP::parseConfig>("parseConfig", Php::Public | Php::Final);
voip.method<&VoIP::getDebugLog>("getDebugLog", Php::Public | Php::Final);
voip.method<&VoIP::getLastError>("getLastError", Php::Public | Php::Final);
voip.method<&VoIP::getPreferredRelayID>("getPreferredRelayID", Php::Public | Php::Final);
voip.method<&VoIP::getVersion>("getVersion", Php::Public | Php::Final);
voip.method<&VoIP::getDebugString>("getDebugString", Php::Public | Php::Final);
voip.method<&VoIP::getStats>("getStats", Php::Public | Php::Final);
voip.method<&VoIP::startTheMagic>("startTheMagic", Php::Public | Php::Final);
voip.method<&VoIP::play>("then", Php::Public | Php::Final, {Php::ByVal("file", Php::Type::String)});
voip.method<&VoIP::play>("play", Php::Public | Php::Final, {Php::ByVal("file", Php::Type::String)});
voip.method<&VoIP::playOnHold>("playOnHold", Php::Public | Php::Final, {Php::ByVal("files", Php::Type::Array)});
voip.method<&VoIP::setOutputFile>("setOutputFile", Php::Public | Php::Final, {Php::ByVal("file", Php::Type::String)});
voip.method<&VoIP::unsetOutputFile>("unsetOutputFile", Php::Public | Php::Final);
voip.property("configuration", 0, Php::Public);
voip.property("storage", 0, Php::Public);
voip.property("internalStorage", 0, Php::Private);
voip.constant("STATE_CREATED", STATE_CREATED);
voip.constant("STATE_WAIT_INIT", STATE_WAIT_INIT);
voip.constant("STATE_WAIT_INIT_ACK", STATE_WAIT_INIT_ACK);
voip.constant("STATE_ESTABLISHED", STATE_ESTABLISHED);
voip.constant("STATE_FAILED", STATE_FAILED);
voip.constant("STATE_RECONNECTING", STATE_RECONNECTING);
voip.constant("TGVOIP_ERROR_UNKNOWN", TGVOIP_ERROR_UNKNOWN);
voip.constant("TGVOIP_ERROR_INCOMPATIBLE", TGVOIP_ERROR_INCOMPATIBLE);
voip.constant("TGVOIP_ERROR_TIMEOUT", TGVOIP_ERROR_TIMEOUT);
voip.constant("TGVOIP_ERROR_AUDIO_IO", TGVOIP_ERROR_AUDIO_IO);
voip.constant("NET_TYPE_UNKNOWN", NET_TYPE_UNKNOWN);
voip.constant("NET_TYPE_GPRS", NET_TYPE_GPRS);
voip.constant("NET_TYPE_EDGE", NET_TYPE_EDGE);
voip.constant("NET_TYPE_3G", NET_TYPE_3G);
voip.constant("NET_TYPE_HSPA", NET_TYPE_HSPA);
voip.constant("NET_TYPE_LTE", NET_TYPE_LTE);
voip.constant("NET_TYPE_WIFI", NET_TYPE_WIFI);
voip.constant("NET_TYPE_ETHERNET", NET_TYPE_ETHERNET);
voip.constant("NET_TYPE_OTHER_HIGH_SPEED", NET_TYPE_OTHER_HIGH_SPEED);
voip.constant("NET_TYPE_OTHER_LOW_SPEED", NET_TYPE_OTHER_LOW_SPEED);
voip.constant("NET_TYPE_DIALUP", NET_TYPE_DIALUP);
voip.constant("NET_TYPE_OTHER_MOBILE", NET_TYPE_OTHER_MOBILE);
voip.constant("DATA_SAVING_NEVER", DATA_SAVING_NEVER);
voip.constant("DATA_SAVING_MOBILE", DATA_SAVING_MOBILE);
voip.constant("DATA_SAVING_ALWAYS", DATA_SAVING_ALWAYS);
voip.constant("PROXY_NONE", PROXY_NONE);
voip.constant("PROXY_SOCKS5", PROXY_SOCKS5);
voip.constant("AUDIO_STATE_NONE", AUDIO_STATE_NONE);
voip.constant("AUDIO_STATE_CREATED", AUDIO_STATE_CREATED);
voip.constant("AUDIO_STATE_CONFIGURED", AUDIO_STATE_CONFIGURED);
voip.constant("AUDIO_STATE_RUNNING", AUDIO_STATE_RUNNING);
voip.constant("CALL_STATE_NONE", CALL_STATE_NONE);
voip.constant("CALL_STATE_REQUESTED", CALL_STATE_REQUESTED);
voip.constant("CALL_STATE_INCOMING", CALL_STATE_INCOMING);
voip.constant("CALL_STATE_ACCEPTED", CALL_STATE_ACCEPTED);
voip.constant("CALL_STATE_CONFIRMED", CALL_STATE_CONFIRMED);
voip.constant("CALL_STATE_READY", CALL_STATE_READY);
voip.constant("CALL_STATE_ENDED", CALL_STATE_ENDED);
2017-07-25 10:58:48 +02:00
voip.constant("PHP_LIBTGVOIP_VERSION", "1.0");
2017-07-23 17:49:47 +02:00
Php::Namespace danog("danog");
Php::Namespace MadelineProto("MadelineProto");
MadelineProto.add(move(voip));
danog.add(move(MadelineProto));
extension.add(move(danog));
return extension;
}
2017-04-05 03:46:16 +02:00
}