Skip to content
Snippets Groups Projects
Commit e938b180 authored by Arnaud Levy's avatar Arnaud Levy
Browse files

posts

parent c8ca831a
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@
class Communication::Website::Page < ApplicationRecord
include WithSlug
include Communication::Website::WithGithub
belongs_to :university
belongs_to :website,
......@@ -52,20 +53,11 @@ class Communication::Website::Page < ApplicationRecord
validates :title, presence: true
before_save :make_path
after_save :publish_to_github
scope :ordered, -> { order(:position) }
scope :recent, -> { order(updated_at: :desc).limit(5) }
scope :root, -> { where(parent_id: nil) }
def content
@content ||= github.read_file_at "_pages/#{id}.html"
end
def content_without_frontmatter
frontmatter.content
end
def has_children?
children.any?
end
......@@ -76,18 +68,14 @@ class Communication::Website::Page < ApplicationRecord
protected
def github
@github ||= Github.with_site(website)
end
def frontmatter
@frontmatter ||= FrontMatterParser::Parser.new(:md).call(content)
end
def make_path
self.path = "#{parent&.path}/#{slug}".gsub('//', '/')
end
def github_path
"_pages/#{github_file}"
end
def publish_to_github
github.publish kind: :pages,
file: "#{ id }.html",
......
......@@ -26,6 +26,7 @@
#
class Communication::Website::Post < ApplicationRecord
include WithSlug
include Communication::Website::WithGithub
belongs_to :university
belongs_to :website,
......@@ -43,4 +44,25 @@ class Communication::Website::Post < ApplicationRecord
def to_s
"#{title}"
end
protected
def github_file
"#{published_at.year}/#{published_at.month}/#{published_at.strftime "%Y-%m-%d"}-#{id}.html"
end
def github_path
"_posts/#{github_file}"
end
def publish_to_github
github.publish kind: :posts,
file: github_file,
title: to_s,
data: ApplicationController.render(
template: 'admin/communication/website/posts/jekyll',
layout: false,
assigns: { post: self }
)
end
end
module Communication::Website::WithGithub
extend ActiveSupport::Concern
included do
after_save :publish_to_github
end
def content
@content ||= github.read_file_at github_path
end
def frontmatter
@frontmatter ||= FrontMatterParser::Parser.new(:md).call(content)
end
def content_without_frontmatter
frontmatter.content
end
def github_file
"#{ id }.html"
end
# Needs override
def github_path
''
end
protected
def github
@github ||= Github.with_site(website)
end
# Needs override
def publish_to_github
''
end
end
......@@ -12,8 +12,8 @@ class Github
def publish(kind:, file:, title:, data:)
local_directory = "tmp/jekyll/#{ kind }"
FileUtils.mkdir_p local_directory
local_path = "#{ local_directory }/#{ file }"
Pathname(local_path).dirname.mkpath
File.write local_path, data
remote_file = "_#{ kind }/#{ file }"
begin
......
......@@ -9,13 +9,13 @@
<div class="card-body">
<p>
<strong>Description</strong>
<%= @page.description %>
</p>
<%= sanitize @page.description %>
<p>
<strong>Text</strong>
</p>
<%= raw @page.text %>
<%= sanitize @page.text %>
</div>
</div>
</div>
......@@ -27,7 +27,7 @@
<table class="<%= table_classes %>">
<tbody>
<tr>
<td><%= Communication::Website::Page.human_attribute_name('slug') %></td>
<td width="150"><%= Communication::Website::Page.human_attribute_name('slug') %></td>
<td><%= @page.slug %></td>
</tr>
<tr>
......
---
title: "<%= @post.title %>"
date: <%= @post.published_at %> UTC
slug: "<%= @post.slug %>"
description: "<%= @post.description %>"
text: "<%= @post.text %>"
---
<%= @post.content_without_frontmatter.html_safe %>
......@@ -9,9 +9,8 @@
<div class="card-body">
<p>
<strong><%= Communication::Website::Post.human_attribute_name('description') %></strong>
<%= sanitize @post.description %>
</p>
<%= sanitize @post.description %>
<p>
<strong><%= Communication::Website::Post.human_attribute_name('text') %></strong>
</p>
......@@ -27,7 +26,7 @@
<table class="<%= table_classes %>">
<tbody>
<tr>
<td><%= Communication::Website::Page.human_attribute_name('slug') %></td>
<td width="150"><%= Communication::Website::Page.human_attribute_name('slug') %></td>
<td><%= @post.slug %></td>
</tr>
<tr>
......@@ -37,7 +36,7 @@
<% if @post.imported_post %>
<tr>
<td><%= t('communication.website.imported.from') %></td>
<td><a href="<%= @post.imported_post.url %>" target="_blank"><%= @post.imported_post.url %></a></td>
<td><a href="<%= @post.imported_post.url %>" target="_blank">Original URL</a></td>
</tr>
<% end %>
</tbody>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment