初始化提交
This commit is contained in:
86
boards/default_src/python_mixpy/converters/communicate.js
Normal file
86
boards/default_src/python_mixpy/converters/communicate.js
Normal file
@@ -0,0 +1,86 @@
|
||||
'use strict';
|
||||
|
||||
// pbc.assignD.get('Response')['check_assign'] = function (py2block, node, targets, value) {
|
||||
// if(value.func._astname != "Attribute" || value.func.value._astname != "Name"){
|
||||
// return false;
|
||||
// }
|
||||
// var moduleName = py2block.Name_str(value.func.value);
|
||||
// var funcName = py2block.identifier(value.func.attr);
|
||||
// if (value._astname === "Call" && moduleName === "requests"
|
||||
// && funcName === "get" && value.args.length === 1)
|
||||
// return true;
|
||||
// return false;
|
||||
// }
|
||||
|
||||
// pbc.assignD.get('Response')['create_block'] = function (py2block, node, targets, value) {
|
||||
// var nameblock = py2block.Name_str(node.targets[0]);
|
||||
// var argblock = py2block.convert(value.args[0]);
|
||||
// return block('requests_get', node.lineno, {
|
||||
// 'VAR': nameblock
|
||||
// }, {
|
||||
// 'DOMAIN':argblock
|
||||
// });
|
||||
// }
|
||||
|
||||
function communicateRequestmethod(mode) {
|
||||
function converter(py2block, func, args, keywords, starargs, kwargs, node) {
|
||||
if (args.length != 1) {
|
||||
throw new Error("Incorrect number of arguments");
|
||||
}
|
||||
var argblock = py2block.convert(args[0]);
|
||||
return block("requests_get", func.lineno, {
|
||||
'TYPE': mode,
|
||||
}, {
|
||||
'URL': argblock
|
||||
}, {
|
||||
"inline": "true"
|
||||
});
|
||||
|
||||
}
|
||||
return converter;
|
||||
|
||||
}
|
||||
|
||||
pbc.moduleFunctionD.get('requests')['get'] = communicateRequestmethod('get');
|
||||
pbc.moduleFunctionD.get('requests')['head'] = communicateRequestmethod('head');
|
||||
pbc.moduleFunctionD.get('requests')['delete'] = communicateRequestmethod('delete');
|
||||
|
||||
function communicatePostmethod(mode) {
|
||||
function converter(py2block, func, args, keywords, starargs, kwargs, node) {
|
||||
if (args.length != 1) {
|
||||
throw new Error("Incorrect number of arguments");
|
||||
}
|
||||
var argblock = py2block.convert(args[0]);
|
||||
var keyblock = py2block.convert(keywords[0].value)
|
||||
return block("requests_post", func.lineno, {
|
||||
'TYPE': mode,
|
||||
}, {
|
||||
'URL': argblock,
|
||||
'data':keyblock
|
||||
}, {
|
||||
"inline": "true"
|
||||
});
|
||||
|
||||
}
|
||||
return converter;
|
||||
|
||||
}
|
||||
|
||||
pbc.moduleFunctionD.get('requests')['post'] = communicatePostmethod('post');
|
||||
pbc.moduleFunctionD.get('requests')['put'] = communicatePostmethod('put');
|
||||
pbc.moduleFunctionD.get('requests')['patch'] = communicatePostmethod('patch');
|
||||
|
||||
function modelsResponse(py2block, node, value, attr) {
|
||||
return block('requests_attribute', node.lineno, {
|
||||
'ATTR': py2block.identifier(attr)
|
||||
}, {
|
||||
'VAL': py2block.convert(value)
|
||||
});
|
||||
}
|
||||
|
||||
pbc.objectAttrD.get('status_code')['Response'] = modelsResponse;
|
||||
pbc.objectAttrD.get('text')['Response'] = modelsResponse;
|
||||
pbc.objectAttrD.get('cookies')['Response'] = modelsResponse;
|
||||
pbc.objectAttrD.get('content')['Response'] = modelsResponse;
|
||||
pbc.objectAttrD.get('encoding')['Response'] = modelsResponse;
|
||||
|
||||
Reference in New Issue
Block a user