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.
Encore provides serializers and persisters to build JSON API-compliant
Web services with Ruby on Rails.
Add this line to your application’s Gemfile:
gem 'encore'
And then execute:
$ bundle
Or install it yourself as:
$ gem install encore
As Encore is under heavy development at the moment, we advise against using this gem in production unless you know exactly what you’re doing. Breaking changes are still being committed.
class PostSerializer < Encore::Serializer::Base
attributes :id, :body, :links
# By default, root_key will be the pluralized model
# name. If you want to set a custom root_key, you can
# do that:
root_key :blog_posts
end
The links
attribute is generated by Encore and will return the included associations. Read more in the Inclusion section.
class PostsController < ApplicationController
before_action :fetch_posts, only: %i(index)
def index
render json: Encore::Serializer::Instance.new(@posts)
end
protected
def fetch_posts
@posts = Post.all
end
end
Will result in the following JSON output:
{
"posts": [
{
"id": "1",
"body": "I enjoy having breakfast in bed. I like waking up to the smell of bacon.",
"links": {
"author": {
"href": "/authors/1",
"id": "1",
"type": "authors"
},
"comments": {
"href": "/comments?post_id=1",
"type": "comments"
}
}
}
],
"linked": {},
"meta": {
"posts": {
"page": 1,
"count": 1,
"page_count": 1,
"previous_page": null,
"next_page": null
}
}
Encore can handle model associations. For example, let’s include the comments
in the code sample above.
Encore::Serializer::Instance.new(@posts, include: 'comments')
Since we don’t want all associations to be exposed, we also need to allow the serializer to include the association. To do so, we need to update the CommentSerializer
.
class PostSerializer < Encore::Serializer::Base
# ...
can_include :author, :comments
end
Requesting GET /posts?include=comments
will result in the following JSON output:
{
"posts": [
{
"id": "1",
"body": "First!",
"links": {
"comments": ["1"],
"author": {
"href": "/authors/1",
"id": 1,
"type": "authors"
}
}
}
],
"linked": {
"comments": [
{
"id": "1",
"title": "FIRST!"
}
]
},
"meta": {
"comments": {
"page": 1,
"count": 1,
"page_count": 1,
"previous_page": null,
"next_page": null
}
}
If you want the comments
to always be included when you request a post
, update the PostSerializer
this way:
class PostSerializer < Encore::Serializer::Base
# ...
always_include :comments
end
Encore
is © 2013-2014 Mirego and may be freely distributed under the New BSD license. See the LICENSE.md
file.
The hazelnut logo is based on this lovely icon by Alessandro Suraci, from The Noun Project. Used under a Creative Commons BY 3.0 license.
Mirego is a team of passionate people who believe that work is a place where you can innovate and have fun. We’re a team of talented people who imagine and build beautiful Web and mobile applications. We come together to share ideas and change the world.
We also love open-source software and we try to give back to the community as much as we can.
FAQs
Unknown package
We found that encore 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.