Giter Club home page Giter Club logo

iocage-plugin-flaresolverr's People

Contributors

pigfrown avatar

Stargazers

 avatar

Watchers

 avatar

iocage-plugin-flaresolverr's Issues

Bump Flaresolverr to version 3

Hi,

Flaresolverr has released a new Major version where they moved to python.

I've managed to adapt this plugin to run the version 3.0.2. It's probably not the cleanest way but it works so I'm sharing it in case that helps.

Here what I did for the post_install.sh script:

diff --git a/post_install.sh b/post_install.sh
index 29f6a4c..23ccdec 100755
--- a/post_install.sh
+++ b/post_install.sh
@@ -4,58 +4,53 @@ cd /usr/local/share
 git clone https://github.com/FlareSolverr/FlareSolverr flaresolverr
 cd flaresolverr
 
-# Checkout version 2.2.9
-git checkout c99101f74  
+# Checkout version
+git checkout v3.0.2  
 
-# Required to make puppeteer install on FreeBSD
-export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
-export PUPPETEER_EXECUTABLE_PATH=/usr/local/bin/chrome
-
-# get dependencies
-npm install 
-
-# patch away puppeteer's arbitrary FreeBSD blocking ๐Ÿ™„
-cd node_modules 
+pip install -r requirements.txt
 
 patch -p1 << EOF
-diff -Naur node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.js node_modules_fixed/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.js
---- node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.js     2022-09-30 11:53:41.991795021 +0100
-+++ node_modules_fixed/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.js       2022-09-30 11:53:10.867991454 +0100
-@@ -180,6 +180,8 @@
-             this._platform = 'linux';
-         else if (platform === 'win32')
-             this._platform = os.arch() === 'x64' ? 'win64' : 'win32';
-+       else if (platform === 'freebsd')
-+           this._platform = 'linux'
-         else
-             (0, assert_js_1.assert)(this._platform, 'Unsupported platform: ' + platform);
-     }
-@@ -505,4 +507,4 @@
-     request.end();
-     return request;
- }
--//# sourceMappingURL=BrowserFetcher.js.map
-\ No newline at end of file
-+//# sourceMappingURL=BrowserFetcher.js.map
-diff -Naur node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.patch node_modules_fixed/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.patch
---- node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.patch  1970-01-01 01:00:00.000000000 +0100
-+++ node_modules_fixed/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.patch    2022-09-30 11:52:26.293600027 +0100
-@@ -0,0 +1,8 @@
-+183,184d182
-+<      else if (platform === 'freebsd')
-+<          this._platform = 'linux'
-+510c508
-+< //# sourceMappingURL=BrowserFetcher.js.map
-+---
-+> //# sourceMappingURL=BrowserFetcher.js.map
-+\ No newline at end of file
+diff --git a/src/undetected_chromedriver/_compat.py b/src/undetected_chromedriver/_compat.py
+index 6b2f28a..ad8bccc 100644
+--- a/src/undetected_chromedriver/_compat.py
++++ b/src/undetected_chromedriver/_compat.py
+@@ -155,6 +155,8 @@ class ChromeDriverManager(object):
+         if _platform in ("linux",):
+             _platform += "64"
+             exe_name = exe_name.format("")
++        if _platform in ("freebsd",):
++            exe_name = exe_name.format("")
+         if _platform in ("darwin",):
+             _platform = "mac64"
+             exe_name = exe_name.format("")
+diff --git a/src/undetected_chromedriver/patcher.py b/src/undetected_chromedriver/patcher.py
+index c20ead8..4c410e4 100644
+--- a/src/undetected_chromedriver/patcher.py
++++ b/src/undetected_chromedriver/patcher.py
+@@ -18,7 +18,7 @@ import zipfile
+
+ logger = logging.getLogger(__name__)
+
+-IS_POSIX = sys.platform.startswith(("darwin", "cygwin", "linux", "linux2"))
++IS_POSIX = sys.platform.startswith(("darwin", "cygwin", "linux", "linux2", "freebsd"))
+
+
+ class Patcher(object):
+diff --git a/src/utils.py b/src/utils.py
+index ceff7ec..dd3aba5 100644
+--- a/src/utils.py
++++ b/src/utils.py
+@@ -11,7 +11,7 @@ FLARESOLVERR_VERSION = None
+ CHROME_MAJOR_VERSION = None
+ USER_AGENT = None
+ XVFB_DISPLAY = None
+-PATCHED_DRIVER_PATH = None
++PATCHED_DRIVER_PATH = "/usr/local/bin/chromedriver"
+
+
+ def get_config_log_html() -> bool:
 EOF
 
-# Compile typescript
-npm run build 
-
-cd ..
-
 # -- Set up service
 
 cat > /usr/local/etc/rc.d/flaresolverr << EOF
@@ -82,12 +77,10 @@ PATH=\$PATH:/usr/local/bin
 
 flaresolverr_precmd() {
         cd /usr/local/share/flaresolverr
-        export PUPPETEER_EXECUTABLE_PATH=/usr/local/bin/chrome
-        export HOST=0.0.0.0
 }
 
 command="/usr/sbin/daemon"
-command_args="-P \${pidfile} /usr/local/bin/npm start > /dev/null"
+command_args="-P \${pidfile} -S -T flaresolverr /usr/local/bin/python3.9 -u src/flaresolverr.py"
 
 run_rc_command "\$1"
 EOF

I've also adapted the flaresolverr.json from the index repo:

diff --git a/flaresolverr.json b/flaresolverr.json
index bcc7725..2ed7e30 100644
--- a/flaresolverr.json
+++ b/flaresolverr.json
@@ -13,7 +13,14 @@
     "pkgs": [
         "git",
         "chromium",
-        "npm-node16"
+        "python39",
+        "py39-pip",
+        "py39-bottle",
+        "py39-waitress",
+        "py39-selenium",
+        "py39-requests",
+        "py39-websockets",
+        "xorg-vfbserver"
     ],
     "packagesite": "http://pkg.FreeBSD.org/${ABI}/latest",
     "fingerprints": {

I hope that helps and thank you for making that plugin !

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.