Skip to main content

This package gives client access to the Gl-Inet json-rpc for firmware >=4.0

Project description

python-glinet - A Python3 Client for GL.Inet Router

This python client provides full access to the GL.Inet Luci API.

Supported firmware versions: 4.0 onwards

About:

My original use case was to automatically generate and write nordvpn wireguard configs to my slate axt-1800 router but then found an elegant way to autogenerate calls for the whole api and it got out of hand :).

It should be noted that GL.Inet changed the api mechanism from REST to JSON-RPC with the introduction of the firmware 4.0. Therefore, older versions are not supported.

Also, there is no official documentation in English yet. The client parses the Chinese documentation from here and dynamically creates the api methods. Once it is available, the repo will be updated.

The best way to navigate through the api is within an ipython shell. A wrapper for ipython and terminal is on the roadmap, but for now you must start ipython first and then load the module.

Of course, you can also build your own application around, just bear in mind that the api function calls are generated on the fly and therefore not available when writing your program.

Features

  • Complete API support
  • Dynamic method creation inclusive docstring from online documentation
  • Api responses are represented recursively as objects, such that you can access all properties via '.'
  • Cache for api description and hashed login
  • Configure background thread to keep connection alive

Installation:

PiP

pip install python-glinet

From Repo

#clone repository
git clone https://github.com/tomtana/python-glinet.git
cd python-glinet

Install package directly. The -e parameter lets you edit the files. If this is not needed to can also install without the -e parameter.

pip install -e .

Alternatively install it in an Python virtual environment (see here for more infos)

python3 -m venv venv
source venv/bin/activate
pip install -e .

Getting Started

Login

Login is as easy as that. If you modified your ip-address or other parameter, you need to pass them as parameter (see the documentation of the GlInet class for more details).

Per default the following steps are executed:

  • if no password is passed
    • try to load from persistance (password stored as hash)
    • if no success ask via prompt
  • try to load api reference from persistence, otherwise load it from the web
  • persist settings
  • start background thread to keep connection alive

Start ipython shell and make sure you sourced your venv if you use one.

from pyglinet import GlInet
glinet = GlInet()
glinet.login()

API Usage

First generate an api object.

client = glinet.get_api_client()

General

  • The api structure is as follow: client.<functionial_group>.<method>
  • Due to python naming rules for variables, all "-" are replaced with "_" for the api method construction. e.g. wg-client becomes wg_client.
  • Use code completion and docstring to intuitively navigate the api

Functional Groups

Just call your client to see all available api function groups.

client

Out[11]: 
Function
------------------
repeater
rs485
qos
acl
modem
logread
igmp
custom_dns
dns
dlna
nas_web
adguardhome
s2s
samba
switch_button
diag
rtty
network
upgrade
reboot
wg_server
firewall
ovpn_server
vpn_policy
fan
system
wg_client
cable
led
ui
netmode
ddns
ipv6
ovpn_client
plugins
tethering
macclone
lan
edgerouter
clients
wifi
cloud
cloud_batch_manage

Methods

To explore the methods of a function group, just select it and hit enter.

client.wg_client

Out[6]:
Function
--------------------
get_recommend_config
get_third_config
add_config
set_config
remove_config
clear_config_list
get_config_list
start
stop
get_status
check_config
confirm_config
add_group
remove_group
set_group
get_group_list
get_all_config_list
set_proxy
add_route
set_route
get_route_list
remove_route

Parameters

Select your method and press enter. A list for all possible parameters are printed. If a parameter is prepended with ?, it means it is optional.

api.wg_client.set_config

Out[8]: 
Parameter              Type    Description
---------------------  ------  ------------------
name                   string  节点名
address_v4             string  节点IPv4子网
?address_v6            string  节点IPv6子网
private_key            string  节点私钥
allowed_ips            string  节点的allowedips
end_point              string  节点的endpoint
public_key             string  节点公钥
?dns                   string  节点的dns
?preshared_key         string  预分享密钥
?ipv6_enable           bool    是否启用IPv6
presharedkey_enable    bool    是否使用预分享密钥
group_id               number  组ID
peer_id                number  配置ID
?listen_port           number  监听端口
?persistent_keepalive  number  节点保活
?mtu                   number  节点的mtu

Docstring

You can also show the docstring by appending a ? to the method. It will show all the parameter and usage examples.

api.wg_client.set_config?

Signature: api.wg_client.set_config(params=None)
Type:      GlInetApiCall
File:      ~/.local/lib/python3.10/site-packages/pyglinet/api_helper.py
Docstring:
Available parameters (?=optional):
Parameter              Type    Description
---------------------  ------  ------------------
name                   string  节点名
address_v4             string  节点IPv4子网
?address_v6            string  节点IPv6子网
private_key            string  节点私钥
allowed_ips            string  节点的allowedips
end_point              string  节点的endpoint
public_key             string  节点公钥
?dns                   string  节点的dns
?preshared_key         string  预分享密钥
?ipv6_enable           bool    是否启用IPv6
presharedkey_enable    bool    是否使用预分享密钥
group_id               number  组ID
peer_id                number  配置ID
?listen_port           number  监听端口
?persistent_keepalive  number  节点保活
?mtu                   number  节点的mtu

Example request:
{\"jsonrpc\":\"2.0\",\"method\":\"call\",\"params\":[\"\",\"wg-client\",\"set_config\",{\"group_id\":3212,\"peer_id\":1254,\"name\":\"test\",\"address_v4\":\"10.8.0.0/24\",\"address_v6\":\"fd00:db8:0:123::/64\",\"private_key\":\"XVpIdr+oYjTcgDwzSZmNa1nSsk8JO+tx1NBo17LDBAI=\",\"allowed_ips\":\"0.0.0.0/0,::/0\",\"end_point\":\"103.231.88.18:3102\",\"public_key\":\"zv0p34WZN7p2vIgehwe33QF27ExjChrPUisk481JHU0=\",\"dns\":\"193.138.219.228\",\"presharedkey_enable\":false,\"listen_port\":22536,\"persistent_keepalive\":25,\"mtu\":1420,\"ipv6_enable\":true}],\"id\":1}

Example response:
{\"jsonrpc\": \"2.0\", \"id\": 1, \"result\": {}}

Method call

Just call the method as usual. Check the usage examples to understand how parameters need to be passed.

client.wg_client.get_all_config_list()

Out[12]: {'name': 'wg_client__get_all_config_list', 'config_list': [{'name': 'wg_client__get_all_config_list', 'username': '', 'group_name': 'AzireVPN', 'peers': [], 'password': '', 'auth_type': 1, 'group_id': 9690}]}

API Response Processing

The API json responses are recursively converted into objects. This provides convenient access with code completion and point access to the data.

ToDos:

  • Add dynamically docstring for API calls
  • Create pip compliant package
  • Publish pip package
  • Add tests
  • Improve documentation
  • Add wrapper for execution via terminal

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-glinet-0.1.7.tar.gz (25.2 kB view details)

Uploaded Source

Built Distribution

python_glinet-0.1.7-py3-none-any.whl (23.3 kB view details)

Uploaded Python 3

File details

Details for the file python-glinet-0.1.7.tar.gz.

File metadata

  • Download URL: python-glinet-0.1.7.tar.gz
  • Upload date:
  • Size: 25.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for python-glinet-0.1.7.tar.gz
Algorithm Hash digest
SHA256 86b95d25902edff08e6aa3a64704ed8a216a7a95855fb7f7386a0d671a7340d2
MD5 f50b0db80a8aa24b91f658c7fa073a35
BLAKE2b-256 5cbbb6ac9bb3e2f2315378d989a9c97c8b40b936522389cd3e92cbeca962bcfd

See more details on using hashes here.

File details

Details for the file python_glinet-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for python_glinet-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 15d8137fc46964dafe1758a5e8c24aa031caa155e1777ceee03feac980692e4b
MD5 275a6ed554c6d32fedd72cc0e051fbee
BLAKE2b-256 65780d79be4ba353b7f871a7af07a2326465f6d36b942b4a8e728e89acf97c11

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page