You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
180 lines
5.0 KiB
180 lines
5.0 KiB
import 'dart:async';
|
|
import 'dart:convert';
|
|
|
|
import 'package:http/http.dart';
|
|
|
|
//test
|
|
|
|
class Api {
|
|
static getcategories() async {
|
|
try {
|
|
final request = await post(Uri.parse("https://api.c-pay.me"),
|
|
body: jsonEncode({
|
|
"app": "cpay",
|
|
"Autorization": "...",
|
|
"action": "get_vente_categorie"
|
|
}),
|
|
headers: <String, String>{
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
}).timeout(const Duration(seconds: 20));
|
|
if (request.statusCode == 200) {
|
|
var data = jsonDecode(request.body);
|
|
return data;
|
|
} else {
|
|
return {};
|
|
}
|
|
} catch (e) {
|
|
return e;
|
|
}
|
|
}
|
|
|
|
static getarticlebycategories(String cat, int page, String textsearch) async {
|
|
final request = await post(Uri.parse("https://api.c-pay.me"),
|
|
body: jsonEncode({
|
|
"app": "cpay",
|
|
"Autorization": "...",
|
|
"action": "get_vente",
|
|
"page": page,
|
|
"categorie": cat,
|
|
"search": textsearch
|
|
}),
|
|
headers: <String, String>{
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
}).timeout(const Duration(seconds: 15));
|
|
if (request.statusCode == 200) {
|
|
var data = jsonDecode(request.body);
|
|
return data;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static getarticle(int page) async {
|
|
//List listarticle = [];
|
|
try {
|
|
final request = await post(Uri.parse("https://api.c-pay.me"),
|
|
body: jsonEncode({
|
|
"app": "cpay",
|
|
"Autorization": "...",
|
|
"action": "get_vente",
|
|
"page": page
|
|
}),
|
|
headers: <String, String>{
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
}).timeout(const Duration(seconds: 20));
|
|
if (request.statusCode == 200) {
|
|
var data = jsonDecode(request.body);
|
|
//listarticle = data["mdata"];
|
|
return data;
|
|
} else {
|
|
return 0;
|
|
}
|
|
} catch (e) {
|
|
return e;
|
|
}
|
|
}
|
|
|
|
static faireDepotMvola(String iban, String montant, String phone) async {
|
|
final request = await post(Uri.parse('https://api.c-pay.me'),
|
|
body: jsonEncode({
|
|
"app": "cpay",
|
|
"iban": iban,
|
|
"montant": montant,
|
|
"telephone": phone,
|
|
"Autorization": "...",
|
|
"action": "depot_mvola"
|
|
}),
|
|
headers: <String, String>{
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
}).timeout(const Duration(seconds: 20));
|
|
if (request.statusCode == 200) {
|
|
var data = jsonDecode(request.body);
|
|
return data;
|
|
}
|
|
}
|
|
|
|
static listenStatus(String servercorrelationid) async {
|
|
final request =
|
|
await get(Uri.parse("https://api.c-pay.me/mvola/$servercorrelationid"));
|
|
if (request.statusCode == 200) {
|
|
var data = jsonDecode(request.body);
|
|
return data;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static getDepotlist(String iban, int page) async {
|
|
final request = await post(Uri.parse('https://api.c-pay.me/depot'),
|
|
body: jsonEncode({
|
|
"app": "cpay",
|
|
"session": iban,
|
|
"Autorization": "...",
|
|
"action": "get_transactions",
|
|
"page": page
|
|
}),
|
|
headers: <String, String>{
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
});
|
|
if (request.statusCode == 200) {
|
|
var data = jsonDecode(request.body);
|
|
return data;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static getReference(String iban, String montant) async {
|
|
try {
|
|
var request = await post(Uri.parse('https://api.c-pay.me/depot'),
|
|
body: jsonEncode({
|
|
"app": "cpay",
|
|
"iban": iban,
|
|
"Autorization": "...",
|
|
"action": "get_reference",
|
|
"montant": montant
|
|
}),
|
|
headers: <String, String>{
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
});
|
|
if (request.statusCode == 200) {
|
|
// Map<String, dynamic> data =
|
|
// Map<String, dynamic>.from(jsonDecode(request.body));
|
|
var data = jsonDecode(request.body);
|
|
return data;
|
|
} else {
|
|
return null;
|
|
}
|
|
} catch (erreur) {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static sendrequestdepositBnktransfer(
|
|
String iban, String montant, String ref) async {
|
|
try {
|
|
var request = await post(Uri.parse('https://api.c-pay.me/depot'),
|
|
body: jsonEncode({
|
|
"app": "cpay",
|
|
"iban": iban,
|
|
"Autorization": "...",
|
|
"action": "depot_bank",
|
|
"montant": montant,
|
|
"reference": ref
|
|
}),
|
|
headers: <String, String>{
|
|
'Content-Type': 'application/json; charset=UTF-8',
|
|
});
|
|
if (request.statusCode == 200) {
|
|
// Map<String, dynamic> data =
|
|
// Map<String, dynamic>.from(jsonDecode(request.body));
|
|
var data = jsonDecode(request.body);
|
|
return data;
|
|
} else {
|
|
return 0;
|
|
}
|
|
} catch (erreur) {
|
|
return erreur;
|
|
}
|
|
}
|
|
}
|
|
|