Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
scrapper-portabilidad
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
List
Board
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
Javier
scrapper-portabilidad
Commits
ceb21a03
Commit
ceb21a03
authored
Dec 17, 2021
by
Javier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
magnus
parent
3e4d8421
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
3 deletions
+55
-3
magnusbilling.py
notebook/magnusbilling.py
+51
-3
petition
petition
+2
-0
result.html
result.html
+2
-0
No files found.
notebook/magnusbilling.py
View file @
ceb21a03
from
requests
import
Session
from
enum
import
Enum
magnus
=
"http://192.168.2.84/mbilling/"
from
requests.models
import
HTTPError
magnus
=
"http://192.168.2.56/mbilling/index.php"
login
=
{
'user'
:
'root'
,
'password'
:
'NgtAtONgeRaFtsbu'
,
'key'
:
''
}
def
create_account
():
class
Tarifa
(
Enum
):
ESTANDAR
=
1
EMPRESA
=
2
PTV
=
4
def
generate_rows
(
tarifa
:
Tarifa
,
telefono
:
str
,
id_cliente
:
int
,
nombre
:
str
,
apellido
:
str
,
email
:
str
)
->
str
:
"""Genera cadena Row para creación de Cliente
"""
row
=
f
'id" : 0,"id_group" : 3,"id_plan" : {tarifa.value},"id_user" : 0,"username" : {telefono},"password" : {id_cliente},"active" : 1,"credit" : 0,'
row
=
''
.
join
((
row
,
f
'"enableexpire" : 0,"expiredays" : 0,"credit_notification" : -1,"restriction" : 0,"callingcard_ping" : {id_cliente},"callshop" : 0,'
))
row
=
''
.
join
((
row
,
f
'"plan_day" : 0,"active_paypal" : 0,"boleto" : 0,"lastname" : {apellido.capitalize()},"firstname" : {nombre.capitalize()},"redial" : "",'
))
row
=
''
.
join
((
row
,
f
'"tag" : "","company_name" : {nombre.capitalize()},"commercial_name" : {" ".join((nombre.capitalize(), apellido.capitalize()))},"address" : "",'
))
row
=
''
.
join
((
row
,
f
'"city" : "","state" : " ","country" : "1","loginkey" : "","zipcode" : "","phone" : "","mobile" : "","email" : {email},"doc" : "","vat" : "",'
))
row
=
''
.
join
((
row
,
f
'"language" : "es","company_website" : "","prefix_local" : "","boleto_day" : 0,"firstusedate":null,"expirationdate":null,"lastuse":null,'
))
row
=
''
.
join
((
row
,
f
'"description":"","creationdate":null,"id_group_agent":0,"calllimit":-1,"mix_monitor_format":"gsm","disk_space":-1,"sipaccountlimit":-1,'
))
row
=
''
.
join
((
row
,
f
'"cpslimit":-1,"state_number":"","neighborhood":"","calllimit_error":"503","transfer_international":0,"transfer_international_profit":null,'
))
row
=
''
.
join
((
row
,
f
'"transfer_flexiload":0,"transfer_flexiload_profit":null,"transfer_bkash":0,"transfer_bkash_profit":null,"transfer_dbbl_rocket":0,'
))
row
=
''
.
join
((
row
,
f
'"transfer_dbbl_rocket_profit":null,"transfer_bdservice_rate":null,"transfer_show_selling_price":null'
))
return
'{"id":0,"id_group":3,"id_plan":1,"id_user":0,"id_offer":0,"username":"test","password":"2uQqJH8F","active":1,"credit":0,"enableexpire":0,"expiredays":0,"status":0,"typepaid":0,"creditlimit":0,"credit_notification":-1,"restriction":0,"callingcard_pin":891457,"callshop":0,"plan_day":0,"active_paypal":0,"boleto":0,"lastname":"TEST","firstname":"TEST","redial":"","tag":"","company_name":"","commercial_name":"","address":"","city":"","state":"","country":"1","loginkey":"","zipcode":"","phone":"","mobile":"","email":"","doc":"","vat":"","language":"es","company_website":"","prefix_local":"","boleto_day":0,"firstusedate":null,"expirationdate":null,"lastuse":null,"description":"","creationdate":null,"id_group_agent":0,"calllimit":-1,"mix_monitor_format":"gsm","disk_space":-1,"sipaccountlimit":-1,"cpslimit":-1,"state_number":"","neighborhood":"","calllimit_error":"503","transfer_international":0,"transfer_international_profit":null,"transfer_flexiload":0,"transfer_flexiload_profit":null,"transfer_bkash":0,"transfer_bkash_profit":null,"transfer_dbbl_rocket":0,"transfer_dbbl_rocket_profit":null,"transfer_bdservice_rate":null,"transfer_show_selling_price":null}'
def
set_headers
(
cnx
:
Session
):
cnx
.
headers
[
'Accept-Encoding'
]
=
'gzip, deflate'
cnx
.
headers
[
'Connection'
]
=
'keep-alive'
cnx
.
headers
[
'Content-Type'
]
=
'application/x-www-form-urlencoded; charset=UTF-8'
cnx
.
headers
[
'Referer'
]
=
magnus
.
replace
(
'index.php'
,
''
)
cnx
.
headers
[
'Origin'
]
=
magnus
.
replace
(
'/mbilling/index.php'
,
''
)
def
create_account
(
nombre
:
str
,
telefono
:
str
,
id_cliente
:
int
,
email
:
str
=
""
,
apellido
:
str
=
''
,
tarifa
:
Tarifa
=
Tarifa
.
ESTANDAR
):
with
Session
()
as
cnx
:
set_headers
(
cnx
)
cnx
.
get
(
magnus
)
cnx
.
post
(
f
'{magnus}/login'
,
data
=
login
)
cnx
.
post
(
f
'{magnus}/authentication/login'
,
data
=
login
)
.
raise_for_status
()
response
=
cnx
.
post
(
f
'{magnus}/user/save'
,
data
=
{
'rows'
:
generate_rows
(
tarifa
,
telefono
,
id_cliente
,
nombre
,
apellido
,
email
)
})
try
:
response
.
raise_for_status
()
except
HTTPError
as
e
:
print
(
response
.
request
.
headers
)
finally
:
with
open
(
'result.html'
,
'wb'
)
as
f
:
f
.
write
(
response
.
content
)
create_account
(
tarifa
=
Tarifa
.
ESTANDAR
,
nombre
=
"Cliente"
,
telefono
=
"856856856"
,
id_cliente
=
256452
,
email
=
"pruebas@pruebas.es"
)
petition
0 → 100644
View file @
ceb21a03
rows=%7B%22id%22%3A0%2C%22id_group%22%3A3%2C%22id_plan%22%3A1%2C%22id_user%22%3A0%2C%22id_offer%22%3A0%2C%22username%22%3A%22test%22%2C%22password%22%3A%222uQqJH8F%22%2C%22active%22%3A1%2C%22credit%22%3A0%2C%22enableexpire%22%3A0%2C%22expiredays%22%3A0%2C%22status%22%3A0%2C%22typepaid%22%3A0%2C%22creditlimit%22%3A0%2C%22credit_notification%22%3A-1%2C%22restriction%22%3A0%2C%22callingcard_pin%22%3A891457%2C%22callshop%22%3A0%2C%22plan_day%22%3A0%2C%22active_paypal%22%3A0%2C%22boleto%22%3A0%2C%22lastname%22%3A%22TEST%22%2C%22firstname%22%3A%22TEST%22%2C%22redial%22%3A%22%22%2C%22tag%22%3A%22%22%2C%22company_name%22%3A%22%22%2C%22commercial_name%22%3A%22%22%2C%22address%22%3A%22%22%2C%22city%22%3A%22%22%2C%22state%22%3A%22%22%2C%22country%22%3A%221%22%2C%22loginkey%22%3A%22%22%2C%22zipcode%22%3A%22%22%2C%22phone%22%3A%22%22%2C%22mobile%22%3A%22%22%2C%22email%22%3A%22%22%2C%22doc%22%3A%22%22%2C%22vat%22%3A%22%22%2C%22language%22%3A%22es%22%2C%22company_website%22%3A%22%22%2C%22prefix_local%22%3A%22%22%2C%22boleto_day%22%3A0%2C%22firstusedate%22%3Anull%2C%22expirationdate%22%3Anull%2C%22lastuse%22%3Anull%2C%22description%22%3A%22%22%2C%22creationdate%22%3Anull%2C%22id_group_agent%22%3A0%2C%22calllimit%22%3A-1%2C%22mix_monitor_format%22%3A%22gsm%22%2C%22disk_space%22%3A-1%2C%22sipaccountlimit%22%3A-1%2C%22cpslimit%22%3A-1%2C%22state_number%22%3A%22%22%2C%22neighborhood%22%3A%22%22%2C%22calllimit_error%22%3A%22503%22%2C%22transfer_international%22%3A0%2C%22transfer_international_profit%22%3Anull%2C%22transfer_flexiload%22%3A0%2C%22transfer_flexiload_profit%22%3Anull%2C%22transfer_bkash%22%3A0%2C%22transfer_bkash_profit%22%3Anull%2C%22transfer_dbbl_rocket%22%3A0%2C%22transfer_dbbl_rocket_profit%22%3Anull%2C%22transfer_bdservice_rate%22%3Anull%2C%22transfer_show_selling_price%22%3Anull%7D
\ No newline at end of file
result.html
0 → 100644
View file @
ceb21a03
Access denied to canCreate in module: user
\ No newline at end of file
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