Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
PDF generator (from HTML) gem for Ruby on Rails.
Add this line to your application's Gemfile:
gem 'html2pdf-rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install html2pdf-rails
Controller
class ThingsController < ApplicationController
def show
respond_to do |format|
format.html
format.pdf do
render_to_pdf pdf: 'file_name' # Excluding ".pdf" extension.
end
end
end
end
Layout
!!!
%html
%head
%meta{ charset: 'utf-8' }
= html2pdf_base_tag
= stylesheet_link_tag 'pdf', media: 'all'
%body
#header= image_tag 'logo.jpg'
#content= yield
You can get signed url of Cloud Storage if your Cloud Funciton code support it.
pdf_url = render_pdf_and_get_url pdf: 'file_name'
redirect_to pdf_url
class ThingsController < ApplicationController
def show
respond_to do |format|
format.html
format.pdf do
render_to_pdf(
pdf: 'file_name', # Excluding ".pdf" extension.
disposition: 'attachment', # default 'inline'
template: 'things/show',
layout: 'pdf', # for a pdf.pdf.erb file
show_as_html: params.key?('debug'), # allow debugging based on url param
pdf_options: { # SEE: https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagepdfoptions
margin: {
top: '30px'
bottom: '30px',
}
}
)
end
end
end
end
const functions = require("firebase-functions");
const puppeteer = require("puppeteer");
const runOptions = {
timeoutSeconds: 20,
memory: "1GB"
};
exports.html2pdf = functions
.runWith(runOptions)
.https.onRequest(
async ({ method, body: { html = "", putToStorage = false, pdfOptions = {} } }, res) => {
const browser = await puppeteer.launch({
headless: true,
args: ["--no-sandbox"]
});
const page = await browser.newPage();
await page.emulateMedia("print");
await page.goto("data:text/html;charset=UTF-8," + html, {
waitUntil: "networkidle0"
});
const pdf = await page.pdf(pdfOptions);
if (putToStorage) {
// Code for Cloud Storage is omitted.
} else {
res.header({ "Content-Type": "application/pdf" });
res.send(pdf);
}
}
);
In config/initializers/html2pdf_rails.rb
, you can configure the following values.
Html2Pdf.configure do |config|
config.endpoint = 'YOUR_HTTP_TRIGGER_ENDPOINT'
end
Bug reports and pull requests are welcome on GitHub at https://github.com/SonicGarden/html2pdf-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that html2pdf-rails demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.