如何从MeteorJS应用程序在meteor服务器上运行远程外部命令?

时间:2016-08-12 20:27:43

标签: node.js meteor casperjs

我创建一些登录Duolingo的CasperJS脚本,点击一个模块然后打开就像我在那里玩。

我创建了一个简单的meteorJS应用程序,我希望当我单击一个按钮时能够执行该casperjs脚本。我正在寻找有经验的人来帮助我或以正确的方式指导我,因为我不太了解我可以用什么来实现这个小小的个人游戏。

我已经读过有关RPC - MeteorJS的远程过程调用,我已经读过使用PHP和NodeJS,您可以运行一个执行脚本的函数,就像我输入命令来运行脚本一样。 我找到了这些资源: ShellJS:https://github.com/shelljs/shelljs 和NodeJS子进程:https://nodejs.org/api/child_process.html#child_process_child_process_exec_command_options_callback

但我没有太多经验,我这样做是为了更多地了解CasperJS,MeteorJS。

我需要的是能够运行此命令 - > " casperjs duolingo.js --engine = slimerjs --disk-cache = no"使用我的Meteorjs应用程序,这样我就可以继续创建我的小型自动化机器人来玩Duolingo整体。

非常感谢你的帮助。

1 个答案:

答案 0 :(得分:3)

这是一个简单的"如果你知道该怎么做: - )

只知道会发生什么:

1。)您可以在服务器端创建一个可以运行外部进程的方法 2.)您创建一个可由客户端调用的流星远程方法 3.)您在客户端创建操作并调用远程流星方法
4.)绑定click事件以调用客户端上的操作

调用外部进程的方法

Circle circle = map.addCircle(new CircleOptions() 
     .center(new LatLng(-33.87365, 151.20689)) // center point of map
     .radius(10000)  // radius of circle to cover on map
     .strokeColor(Color.RED)  //color of circle boundary 
     .fillColor(Color.BLUE)); //color of circle to fill ,
                              // make sure choose the light color close to transparent 

流星远程服务器方法

process_exec_sync = function (command) {
  // Load future from fibers
  var Future = Npm.require("fibers/future");
  // Load exec
  var child = Npm.require("child_process");
  // Create new future
  var future = new Future();
  // Run command synchronous
  child.exec(command, function(error, stdout, stderr) {
    // return an onbject to identify error and success
    var result = {};
    // test for error
    if (error) {
      result.error = error;
    }
    // return stdout
    result.stdout = stdout;
    future.return(result);
  });
  // wait for future
  return future.wait();
}

客户端事件和远程方法调用

// define server methods so that the clients will have access to server components
Meteor.methods({
  runCasperJS: function() {
    // This method call won't return immediately, it will wait for the
    // asynchronous code to finish, so we call unblock to allow this client
    // to queue other method calls (see Meteor docs)
    this.unblock();
    // run synchonous system command
    var result = process_exec_sync('casperjs duolingo.js --engine=slimerjs --disk-cache=no');
    // check for error
    if (result.error) {
      throw new Meteor.Error("exec-fail", "Error running CasperJS: " + result.error.message);
    }
    // success
    return true;
  }
})

恢复

您需要将服务器端方法放在目录" yourproject / server"上的文件中。 (例如)main.js和客户端部分进入您希望按下的按钮模板(将mytemplate重命名为您定义的按钮)。

希望你得到你需要的东西。

干杯 汤姆