fix: work on step 12

This commit is contained in:
2026-04-30 16:55:00 +02:00
parent a6033cb86a
commit 8358f9000e
15 changed files with 893 additions and 192 deletions

239
CODESMELL.md Normal file
View File

@@ -0,0 +1,239 @@
# Elixir Code Smell Analysis — bDS2
> Generated by static analysis of the codebase. Do not delete; use as a reference for refactoring sprints.
---
## Summary
The project is architecturally sound at a high level: contexts are well-defined, Ecto is used properly for schema validation, `with` blocks handle errors cleanly, and the GenServer implementations are mostly correct. However, **the codebase suffers from severe module bloat, excessive duplication of helper functions, risky process-dictionary usage, and several side-effect-in-transaction anti-patterns** that become maintenance liabilities in a desktop application expected to run for long sessions.
---
## Critical Anti-Patterns
### 1. Massive Module Bloat (Most Serious)
Several modules are far too large and violate the single-responsibility principle.
| Module | Lines | Issue |
|--------|-------|-------|
| `BDS.Desktop.ShellLive` | ~2,600 | Handles UI events, routing, overlays, menus, project switching, tab management, translations, task polling, and native menu integration |
| `BDS.Posts` | ~1,700 | Handles CRUD, publishing, file I/O, translations, auto-translation scheduling, embeddings sync, search sync, link rebuilding, and validation |
| `BDS.Generation` | ~1,500 | Site generation, validation, sitemap building, archive pagination, feed rendering, and file hashing |
| `BDS.MCP` | ~670 | MCP tools, resources, proposals, post detail serialization, search, and category counting |
**Why this is an anti-pattern:** Giant modules reduce compiler concurrency, make refactoring dangerous, obscure test coverage, and increase merge conflicts. Elixir/OTP best practice is to keep modules under ~400 lines and split by responsibility.
**Fix:** Extract sub-domains into dedicated modules (e.g., `BDS.Posts.Publisher`, `BDS.Posts.Translations`, `BDS.Generation.SitemapBuilder`, `BDS.Desktop.ShellLive.EventRouter`).
---
### 2. Process Dictionary for I18n State
In `BDS.Desktop.ShellLive`:
```elixir
def render(assigns) do
Process.put(:bds_ui_locale, assigns.page_language)
index(assigns)
end
```
And later:
```elixir
defp translated(text, bindings \\ %{}), do: ShellData.translate(text, bindings, Process.get(:bds_ui_locale))
```
**Why this is an anti-pattern:** The process dictionary is implicit global state. It makes functions harder to test in isolation and can leak state between concurrent operations in the same process. Elixir strongly discourages `Process.put/get` for business logic.
**Fix:** Pass `locale` explicitly through `assigns` to all translation call sites, or use a dedicated context struct.
---
### 3. Side Effects Inside Database Transactions
In `BDS.Media.import_media/1`:
```elixir
Repo.transaction(fn ->
media = %Media{} |> Media.changeset(...) |> Repo.insert!()
:ok = File.mkdir_p(Path.dirname(destination))
:ok = File.cp(source_path, destination)
:ok = write_sidecar(project, media)
:ok = ensure_thumbnails(project, media)
:ok = Search.sync_media(media)
media
end)
```
**Why this is an anti-pattern:** If the transaction retries (or the DB connection times out in SQLite), filesystem and thumbnail side effects are duplicated or orphaned. Ecto transactions should contain **only** database operations.
**Fix:** Perform the DB insert in the transaction, then do filesystem work after the transaction succeeds.
---
### 4. `String.to_atom/1` on Untrusted Input
In `BDS.MCP`:
```elixir
defp atomize_keys(map) when is_map(map) do
Map.new(map, fn {key, value} -> {String.to_atom(key), value} end)
end
```
**Why this is an anti-pattern:** Atoms are not garbage collected. If MCP receives large or arbitrary JSON keys, the VM atom table can fill up and crash the BEAM.
**Fix:** Use `String.to_existing_atom/1` (with a safe fallback) or keep keys as strings.
---
### 5. Bang Functions (`File.read!`) in Business Logic Without Rescue
Found in `BDS.Posts`, `BDS.Media`, `BDS.MCP`, `BDS.Generation`:
```elixir
defp parse_rebuild_file(project, path) do
contents = File.read!(path)
{:ok, %{fields: fields}} = Frontmatter.parse_document(contents)
...
end
```
**Why this is an anti-pattern:** Missing files or permission errors raise unhandled exceptions that crash the caller. In a GenServer context (e.g., background tasks), this brings down the worker.
**Fix:** Use `File.read/1` and handle `{:error, reason}` explicitly, returning `{:error, reason}` tuples to callers.
---
### 6. Duplicate Helper Functions Across Contexts
The same private helpers are copy-pasted in `BDS.Posts`, `BDS.Media`, `BDS.Search`, `BDS.Generation`, `BDS.Publishing`, `BDS.MCP`:
- `attr/2` (atom/string key normalization)
- `maybe_put/3`
- `blank_to_nil/1`
- `progress_callback/1`
- `report_rebuild_started/3`, `report_rebuild_progress/4`
**Why this is an anti-pattern:** Violates DRY. When behavior needs to change (e.g., adding float progress support), every copy must be updated.
**Fix:** Extract to a shared utility module such as `BDS.MapUtils`, `BDS.AttrUtils`, or `BDS.ProgressReporter`.
---
### 7. Direct Repo Access in LiveView
`BDS.Desktop.ShellLive` directly queries the repo:
```elixir
case Repo.get(Post, post_id) do
%Post{} = post -> ...
end
```
**Why this is an anti-pattern:** LiveViews are the web layer; they should call context functions (`BDS.Posts.get_post/1`). Direct Repo access leaks persistence details into the UI and makes testing harder.
**Fix:** Replace all `Repo.get` calls in `ShellLive` with context function calls.
---
### 8. `String.to_existing_atom/1` on User Input Without Whitelist
In `ShellLive`:
```elixir
def handle_event("select_view", %{"view" => view_id}, socket) do
workbench = Workbench.click_activity(socket.assigns.workbench, String.to_existing_atom(view_id))
...
end
```
**Why this is an anti-pattern:** If a client sends a non-existent atom string, it raises `ArgumentError`. While safer than `to_atom`, it is still a crash vector.
**Fix:** Validate against a whitelist or map of known string-to-atom conversions before conversion.
---
### 9. Nested Exception Handling for Control Flow
In `ShellLive`:
```elixir
defp safe_existing_atom(action) when is_binary(action) do
String.to_existing_atom(action)
rescue
ArgumentError -> nil
end
```
**Why this is an anti-pattern:** Using exceptions for expected control flow is slower and harder to follow than explicit validation.
**Fix:** Maintain an explicit mapping of allowed actions, or use a `case` with `:erlang.binary_to_existing_atom/2` and catch the error tuple.
---
### 10. `Jason.decode!` Without Error Handling
In `BDS.AI.OpenAICompatibleRuntime`:
```elixir
defp normalize_response(body) do
payload = Jason.decode!(body)
...
end
```
**Why this is an anti-pattern:** Malformed JSON from an external API will crash the caller.
**Fix:** Use `Jason.decode/1` and propagate `{:error, reason}`.
---
## Moderate Concerns
### 11. Missing `@spec` Typespecs
Very few public functions have `@spec` declarations. For a project of this size, this makes Dialyzer less effective and the API surface harder to understand for new contributors.
### 12. Tests Run Synchronously
All tests visible use `use ExUnit.Case, async: false`. For a large suite, this unnecessarily slows CI and local feedback loops. Use `async: true` where tests are isolated.
### 13. Raw SQL Overuse
While SQLite FTS necessitates some raw SQL, many queries in `BDS.Search`, `BDS.Media`, and `BDS.Posts` use `Repo.query!/2` for standard operations that Ecto could express portably (e.g., `DELETE FROM ... WHERE ...`). This reduces type safety and database portability.
### 14. Atom/String Key Duality
Many functions normalize between atom and string keys repeatedly:
```elixir
Map.get(assigns, :language, Map.get(assigns, "language", ...))
```
This suggests data isn't normalized at boundaries. Prefer atoms for internal structs and strings only at external boundaries (JSON, HTTP params).
### 15. GenServer State Growth (Tasks)
`BDS.Tasks` stores all tasks forever in a single map. The `clear_completed`/`clear_finished` functions exist, but if the UI doesn't trigger them regularly in a long-running desktop app, memory grows unbounded. Consider TTL-based eviction.
---
## What the Project Does Well
- **Contexts are clearly separated** (`Posts`, `Media`, `Projects`, `Search`, etc.).
- **Ecto changesets** are used consistently for validation.
- **`with` blocks** handle multi-step error flows cleanly.
- **Pattern matching** is idiomatic and pervasive.
- **Task.Supervisor** is used correctly for background work.
- **Atomic file writes** (`Persistence.atomic_write`) show good filesystem hygiene.
- **PubSub** is used appropriately for CLI sync notifications.
---
## Bottom Line
The biggest risks are **module size** and **duplicated helpers**, followed by the **process dictionary i18n** and **side effects in transactions**. Fixing the top 5 anti-patterns would significantly improve maintainability, testability, and reliability of the desktop app over long-running sessions.

View File

@@ -4,9 +4,9 @@ This document tracks the current implementation state of bDS2 against the Allium
## Open Work Summary ## Open Work Summary
- Completed plan steps: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11. - Completed plan steps: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
- Open plan steps: 12. - Open plan steps: none.
- Next actionable step: 12. The remaining open parity backlog is now import execution/editor parity. - Next actionable step: rerun parity audits when scope expands; current implemented surfaces are at parity.
- Scheduled after the current parity pass: none. - Scheduled after the current parity pass: none.
## Current State ## Current State
@@ -83,7 +83,7 @@ Only these two audit tracks matter for the current pass. The follow-on missing-f
11. Restore desktop-side CLI mutation watching parity. Completed 2026-04-29. 11. Restore desktop-side CLI mutation watching parity. Completed 2026-04-29.
A supervised CLI-sync watcher now polls the persisted notification store on the old-app timing budget, broadcasts `entity:changed` events through PubSub, and the LiveView shell refreshes sidebar/editor state while closing stale post/media tabs on external deletes. A supervised CLI-sync watcher now polls the persisted notification store on the old-app timing budget, broadcasts `entity:changed` events through PubSub, and the LiveView shell refreshes sidebar/editor state while closing stale post/media tabs on external deletes.
12. Restore import execution and editor parity. Completed 2026-04-29. 12. Restore import execution and editor parity. Completed 2026-04-30.
The stored import-definition flow now runs through the old analysis/execution pipeline again with progress callbacks, dedicated import-editor detail sections, inline taxonomy mapping pills plus AI-backed mapping, and focused import proof plus clean compile, dialyzer, and full-suite validation. The stored import-definition flow now runs through the old analysis/execution pipeline again with progress callbacks, dedicated import-editor detail sections, inline taxonomy mapping pills plus AI-backed mapping, and focused import proof plus clean compile, dialyzer, and full-suite validation.
## Batch 3 Audit Matrix ## Batch 3 Audit Matrix

View File

@@ -243,12 +243,16 @@ defmodule BDS.Desktop.Automation do
{messages, buffer} = split_driver_buffer(state.driver_buffer) {messages, buffer} = split_driver_buffer(state.driver_buffer)
case Enum.reduce_while(messages, {%{state | driver_buffer: buffer}, nil}, fn message, {acc, _} -> case Enum.reduce_while(messages, {%{state | driver_buffer: buffer}, nil}, fn message, {acc, _} ->
decoded = Jason.decode!(message) case decode_driver_message(message) do
:skip ->
{:cont, {acc, nil}}
{:ok, decoded} ->
case matcher.(decoded) do case matcher.(decoded) do
{:ok, reply} -> {:halt, {acc, reply}} {:ok, reply} -> {:halt, {acc, reply}}
:continue -> {:cont, {acc, nil}} :continue -> {:cont, {acc, nil}}
end end
end
end) do end) do
{state, nil} -> {state, nil} ->
remaining = max(deadline - System.monotonic_time(:millisecond), 0) remaining = max(deadline - System.monotonic_time(:millisecond), 0)
@@ -282,6 +286,24 @@ defmodule BDS.Desktop.Automation do
end end
end end
defp decode_driver_message(message) do
trimmed = String.trim(message)
cond do
trimmed == "" ->
:skip
not String.starts_with?(trimmed, "{") ->
:skip
true ->
case Jason.decode(trimmed) do
{:ok, decoded} -> {:ok, decoded}
{:error, _reason} -> :skip
end
end
end
defp wait_for_server(base_url) do defp wait_for_server(base_url) do
deadline = System.monotonic_time(:millisecond) + @ready_timeout deadline = System.monotonic_time(:millisecond) + @ready_timeout
do_wait_for_server(base_url, deadline) do_wait_for_server(base_url, deadline)

View File

@@ -106,7 +106,7 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
Task.Supervisor.async_nolink(BDS.Tasks.TaskSupervisor, fn -> Task.Supervisor.async_nolink(BDS.Tasks.TaskSupervisor, fn ->
ImportAnalysis.analyze_wxr(project_id, wxr_file_path, definition.uploads_folder_path, ImportAnalysis.analyze_wxr(project_id, wxr_file_path, definition.uploads_folder_path,
on_progress: fn step, detail -> on_progress: fn step, detail ->
send(live_view_pid, {:import_analysis_progress, definition_id, step, detail}) send(live_view_pid, {:import_analysis_progress, definition_id, translate_phase(step), detail})
end end
) )
end) end)
@@ -165,6 +165,8 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
) )
end) end)
progress_phase = translate_execution_phase("posts")
:ok = allow_repo_sandbox(task.pid) :ok = allow_repo_sandbox(task.pid)
socket socket
@@ -176,10 +178,11 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
error: nil, error: nil,
count: counts.total, count: counts.total,
result: nil, result: nil,
phase: translated("importAnalysis.executionStarting"), phase: progress_phase,
current: 0, current: 0,
total: counts.total, total: counts.total,
detail: nil, detail: nil,
eta: nil,
ref: task.ref ref: task.ref
}) })
) )
@@ -344,16 +347,20 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
end end
def note_execution_progress(socket, definition_id, phase, current, total, detail, reload) do def note_execution_progress(socket, definition_id, phase, current, total, detail, reload) do
{detail_text, eta} = decompose_progress_detail(detail)
translated_phase = translate_execution_phase(phase)
socket socket
|> assign( |> assign(
:import_editor_execution_states, :import_editor_execution_states,
Map.update(socket.assigns.import_editor_execution_states, definition_id, default_execution_state(), fn state -> Map.update(socket.assigns.import_editor_execution_states, definition_id, default_execution_state(), fn state ->
state state
|> Map.put(:is_executing, true) |> Map.put(:is_executing, true)
|> Map.put(:phase, phase) |> Map.put(:phase, translated_phase)
|> Map.put(:current, current) |> Map.put(:current, current)
|> Map.put(:total, total) |> Map.put(:total, total)
|> Map.put(:detail, detail) |> Map.put(:detail, detail_text)
|> Map.put(:eta, eta)
end) end)
) )
|> reload.(socket.assigns.workbench) |> reload.(socket.assigns.workbench)
@@ -595,6 +602,9 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
<div class="import-stat-cards"> <div class="import-stat-cards">
<.stat_card label={translated("importAnalysis.posts")} stats={@report.post_stats} /> <.stat_card label={translated("importAnalysis.posts")} stats={@report.post_stats} />
<%= if Map.get(@report, :other_stats) && Map.get(@report.other_stats, :total, 0) > 0 do %>
<.other_stat_card label={translated("importAnalysis.other")} stats={@report.other_stats} />
<% end %>
<.stat_card label={translated("importAnalysis.pages")} stats={@report.page_stats} /> <.stat_card label={translated("importAnalysis.pages")} stats={@report.page_stats} />
<.media_stat_card label={translated("importAnalysis.media")} stats={@report.media_stats} /> <.media_stat_card label={translated("importAnalysis.media")} stats={@report.media_stats} />
<.taxonomy_stat_card label={translated("importAnalysis.categories")} stats={@report.category_stats} /> <.taxonomy_stat_card label={translated("importAnalysis.categories")} stats={@report.category_stats} />
@@ -610,6 +620,7 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
<span class="distribution-year"><%= row.year %></span> <span class="distribution-year"><%= row.year %></span>
<div class="distribution-bar-container"> <div class="distribution-bar-container">
<div class="distribution-bar distribution-bar-posts" style={"width: #{distribution_width(row.post_count, @report.date_distribution, :post_count)}%;"}></div> <div class="distribution-bar distribution-bar-posts" style={"width: #{distribution_width(row.post_count, @report.date_distribution, :post_count)}%;"}></div>
<div class="distribution-bar distribution-bar-media" style={"width: #{distribution_width(row.media_count, @report.date_distribution, :media_count)}%;"}></div>
</div> </div>
<span class="distribution-count"><%= row.post_count %> / <%= row.media_count %></span> <span class="distribution-count"><%= row.post_count %> / <%= row.media_count %></span>
</div> </div>
@@ -632,6 +643,9 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
<span class="import-detail"><%= @execution_state.detail %></span> <span class="import-detail"><%= @execution_state.detail %></span>
<% end %> <% end %>
<span class="import-counter"><%= @execution_state.current || 0 %> / <%= @execution_state.total || @counts.total %></span> <span class="import-counter"><%= @execution_state.current || 0 %> / <%= @execution_state.total || @counts.total %></span>
<%= if eta = format_eta(Map.get(@execution_state, :eta)) do %>
<span class="import-eta"><%= eta %></span>
<% end %>
</div> </div>
</div> </div>
<% end %> <% end %>
@@ -741,22 +755,52 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
</section> </section>
<% end %> <% end %>
<%= if Enum.any?(Map.get(@report, :macros, [])) do %> <% macros = Map.get(@report, :macros, %{}) %>
<%= if Enum.any?(Map.get(macros, :discovered, [])) do %>
<section class="import-detail-section"> <section class="import-detail-section">
<button class="import-section-toggle" type="button" phx-click="toggle_import_section" phx-value-section="macros"> <button class="import-section-toggle" type="button" phx-click="toggle_import_section" phx-value-section="macros">
<span><%= translated("importAnalysis.macrosWithCount", %{count: length(@report.macros)}) %></span> <span><%= translated("importAnalysis.macrosWithCount", %{count: macros.total || length(macros.discovered)}) %></span>
<span class="toggle-icon"><%= if @sections.macros, do: "▾", else: "▸" %></span> <span class="toggle-icon"><%= if @sections.macros, do: "▾", else: "▸" %></span>
</button> </button>
<%= if @sections.macros do %> <%= if @sections.macros do %>
<div class="macros-summary">
<span class="macros-mapped"><%= translated("importAnalysis.mappedCount", %{count: macros.mapped_count || 0}) %></span>
<span class="macros-unmapped"><%= translated("importAnalysis.unmappedCount", %{count: macros.unmapped_count || 0}) %></span>
</div>
<div class="macros-list"> <div class="macros-list">
<%= for macro <- @report.macros do %> <%= for macro <- macros.discovered do %>
<div class="macro-item unmapped"> <div class={"macro-item #{if macro.mapped, do: "mapped", else: "unmapped"}"}>
<div class="macro-header"> <div class="macro-header">
<span class="macro-name"><%= macro.name %></span> <span class="macro-name"><%= macro.name %></span>
<span class="macro-status-badge unmapped"><%= translated("importAnalysis.macroStatusUnknown") %></span> <span class={"macro-status-badge #{if macro.mapped, do: "mapped", else: "unmapped"}"}>
<span class="macro-count"><%= translated("importAnalysis.macroUses", %{count: macro.usage_count}) %></span> <%= if macro.mapped, do: translated("importAnalysis.macroStatusMapped"), else: translated("importAnalysis.macroStatusUnknown") %>
</span>
<span class="macro-count"><%= translated("importAnalysis.macroUses", %{count: macro.total_count}) %></span>
</div> </div>
<%= if Enum.any?(Map.get(macro, :usages, [])) do %>
<div class="macro-usages">
<%= for usage <- macro.usages do %>
<div class="macro-usage">
<span class="macro-usage-params">
<%= if Enum.any?(Map.get(usage, :params, %{})) do %>
<%= for {k, v} <- usage.params do %>
<span class="macro-usage-param"><%= k %>=<%= v %></span>
<% end %>
<% else %>
<%= translated("importAnalysis.noParameters") %>
<% end %>
</span>
<span class="macro-usage-count"><%= translated("importAnalysis.macroUses", %{count: usage.count}) %></span>
</div>
<% end %>
</div>
<% end %>
<%= if Enum.any?(Map.get(macro, :post_slugs, [])) do %>
<div class="macro-post-slugs">
<%= translated("importAnalysis.usedIn", %{items: Enum.join(Enum.take(macro.post_slugs, 5), ", "), more: if(length(macro.post_slugs) > 5, do: translated("importAnalysis.moreSuffix", %{count: length(macro.post_slugs) - 5}), else: "")}) %>
</div>
<% end %>
</div> </div>
<% end %> <% end %>
</div> </div>
@@ -939,6 +983,23 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
attr :label, :string, required: true attr :label, :string, required: true
attr :stats, :map, required: true attr :stats, :map, required: true
def other_stat_card(assigns) do
~H"""
<div class="import-stat-card import-stat-card-other">
<h3><%= @label %></h3>
<div class="import-stat-number"><%= Map.get(@stats, :total, 0) %></div>
<div class="import-stat-breakdown">
<%= for type <- Map.get(@stats, :types, []) do %>
<span class="import-stat-tag stat-other"><%= type %></span>
<% end %>
</div>
</div>
"""
end
attr :label, :string, required: true
attr :stats, :map, required: true
def media_stat_card(assigns) do def media_stat_card(assigns) do
~H""" ~H"""
<div class="import-stat-card"> <div class="import-stat-card">
@@ -1123,7 +1184,7 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
defp importable_entity_count(items) do defp importable_entity_count(items) do
Enum.count(items || [], fn item -> Enum.count(items || [], fn item ->
item.status == "new" or (item.status == "conflict" and Map.get(item, :resolution, "skip") != "skip") item.status == "new" or (item.status == "conflict" and Map.get(item, :resolution, "ignore") not in ["ignore", "skip"])
end) end)
end end
@@ -1177,6 +1238,58 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
end end
defp translated(text, bindings \\ %{}), do: ShellData.translate(text, bindings, Process.get(:bds_ui_locale)) defp translated(text, bindings \\ %{}), do: ShellData.translate(text, bindings, Process.get(:bds_ui_locale))
defp translate_phase(step) when is_binary(step) do
case step do
"parsing" -> translated("importAnalysis.analysisPhase.parsing")
"scanning" -> translated("importAnalysis.analysisPhase.scanning")
"taxonomies" -> translated("importAnalysis.analysisPhase.taxonomies")
"posts" -> translated("importAnalysis.analysisPhase.posts")
"media" -> translated("importAnalysis.analysisPhase.media")
"complete" -> translated("importAnalysis.analysisPhase.complete")
other -> other
end
end
defp translate_phase(other), do: other
defp translate_execution_phase(phase) when is_binary(phase) do
case phase do
"tags" -> translated("importAnalysis.phase.tags")
"posts" -> translated("importAnalysis.phase.posts")
"media" -> translated("importAnalysis.phase.media")
"pages" -> translated("importAnalysis.phase.pages")
"complete" -> translated("importAnalysis.phase.complete")
other -> other
end
end
defp translate_execution_phase(other), do: other
defp decompose_progress_detail(%{detail: detail, eta: eta}), do: {to_string_or_nil(detail), eta}
defp decompose_progress_detail(detail) when is_binary(detail) or is_nil(detail), do: {detail, nil}
defp decompose_progress_detail(detail), do: {to_string_or_nil(detail), nil}
defp to_string_or_nil(nil), do: nil
defp to_string_or_nil(value) when is_binary(value), do: value
defp to_string_or_nil(value), do: inspect(value)
def format_eta(nil), do: nil
def format_eta(ms) when is_integer(ms) and ms >= 0 do
seconds = div(ms, 1000)
if seconds < 60 do
translated("importAnalysis.eta", %{value: translated("importAnalysis.etaSeconds", %{count: seconds})})
else
m = div(seconds, 60)
s = rem(seconds, 60)
translated("importAnalysis.eta", %{value: translated("importAnalysis.etaMinutes", %{minutes: m, seconds: s})})
end
end
def format_eta(_other), do: nil
defp present?(value), do: value not in [nil, ""] defp present?(value), do: value not in [nil, ""]
defp blank?(value), do: value in [nil, ""] defp blank?(value), do: value in [nil, ""]
defp blank_to_nil(""), do: nil defp blank_to_nil(""), do: nil
@@ -1210,6 +1323,7 @@ defmodule BDS.Desktop.ShellLive.ImportEditor do
current: 0, current: 0,
total: 0, total: 0,
detail: nil, detail: nil,
eta: nil,
ref: nil ref: nil
} }
end end

View File

@@ -68,6 +68,10 @@ defmodule BDS.ImportAnalysis do
tag_items = Enum.map(wxr_data.tags, &analyze_taxonomy_item(&1, existing_tag_set)) tag_items = Enum.map(wxr_data.tags, &analyze_taxonomy_item(&1, existing_tag_set))
notify_progress(on_progress, "Discovering macros...") notify_progress(on_progress, "Discovering macros...")
macro_summary = analyze_macros(wxr_data.posts ++ wxr_data.pages)
posts_only = Enum.filter(analyzed_posts, &(&1.post_type == "post"))
other_posts = Enum.reject(analyzed_posts, &(&1.post_type == "post"))
%{ %{
source_file: wxr_file_path, source_file: wxr_file_path,
@@ -77,14 +81,15 @@ defmodule BDS.ImportAnalysis do
language: wxr_data.site.language, language: wxr_data.site.language,
source_file: wxr_file_path source_file: wxr_file_path
}, },
post_stats: summarize_post_items(analyzed_posts), post_stats: summarize_post_items(posts_only),
other_stats: summarize_other_items(other_posts),
page_stats: summarize_post_items(analyzed_pages), page_stats: summarize_post_items(analyzed_pages),
media_stats: summarize_media_items(analyzed_media), media_stats: summarize_media_items(analyzed_media),
category_stats: summarize_taxonomy_items(category_items), category_stats: summarize_taxonomy_items(category_items),
tag_stats: summarize_taxonomy_items(tag_items), tag_stats: summarize_taxonomy_items(tag_items),
date_distribution: date_distribution(analyzed_posts, analyzed_pages, analyzed_media), date_distribution: date_distribution(analyzed_posts, analyzed_pages, analyzed_media),
conflicts: conflicts(analyzed_posts, analyzed_pages, analyzed_media), conflicts: conflicts(analyzed_posts, analyzed_pages, analyzed_media),
macros: macros(wxr_data.posts ++ wxr_data.pages), macros: macro_summary,
items: %{ items: %{
posts: Enum.map(analyzed_posts, &summary_item/1), posts: Enum.map(analyzed_posts, &summary_item/1),
pages: Enum.map(analyzed_pages, &summary_item/1), pages: Enum.map(analyzed_pages, &summary_item/1),
@@ -110,17 +115,18 @@ defmodule BDS.ImportAnalysis do
cond do cond do
existing_by_slug && existing_by_slug.checksum == content_checksum && not is_nil(existing_by_slug.checksum) -> {"update", existing_by_slug} existing_by_slug && existing_by_slug.checksum == content_checksum && not is_nil(existing_by_slug.checksum) -> {"update", existing_by_slug}
existing_by_slug -> {"conflict", existing_by_slug} existing_by_slug -> {"conflict", existing_by_slug}
existing_by_checksum -> {"duplicate", existing_by_checksum} existing_by_checksum -> {"content-duplicate", existing_by_checksum}
true -> {"new", nil} true -> {"new", nil}
end end
%{ %{
item_type: item_type, item_type: item_type,
post_type: wxr_post.post_type || item_type,
wp_id: wxr_post.wp_id, wp_id: wxr_post.wp_id,
title: wxr_post.title, title: wxr_post.title,
slug: wxr_post.slug, slug: wxr_post.slug,
status: status, status: status,
resolution: if(status == "conflict", do: "skip", else: nil), resolution: if(status == "conflict", do: "ignore", else: nil),
existing_id: existing && existing.id, existing_id: existing && existing.id,
existing_title: existing && existing.title, existing_title: existing && existing.title,
author: blank_to_nil(wxr_post.creator), author: blank_to_nil(wxr_post.creator),
@@ -159,7 +165,7 @@ defmodule BDS.ImportAnalysis do
cond do cond do
existing_by_name && existing_by_name.checksum == file_checksum && not is_nil(existing_by_name.checksum) -> {"update", file_checksum, existing_by_name} existing_by_name && existing_by_name.checksum == file_checksum && not is_nil(existing_by_name.checksum) -> {"update", file_checksum, existing_by_name}
existing_by_name -> {"conflict", file_checksum, existing_by_name} existing_by_name -> {"conflict", file_checksum, existing_by_name}
existing_by_checksum -> {"duplicate", file_checksum, existing_by_checksum} existing_by_checksum -> {"content-duplicate", file_checksum, existing_by_checksum}
true -> {"new", file_checksum, nil} true -> {"new", file_checksum, nil}
end end
end end
@@ -170,8 +176,9 @@ defmodule BDS.ImportAnalysis do
title: wxr_media.title, title: wxr_media.title,
filename: wxr_media.filename, filename: wxr_media.filename,
relative_path: wxr_media.relative_path, relative_path: wxr_media.relative_path,
url: wxr_media.url,
status: status, status: status,
resolution: if(status == "conflict", do: "skip", else: nil), resolution: if(status == "conflict", do: "ignore", else: nil),
existing_id: existing && existing.id, existing_id: existing && existing.id,
existing_title: existing && existing.title, existing_title: existing && existing.title,
mime_type: wxr_media.mime_type, mime_type: wxr_media.mime_type,
@@ -209,6 +216,7 @@ defmodule BDS.ImportAnalysis do
defp summary_item(item) do defp summary_item(item) do
base = %{ base = %{
item_type: item.item_type, item_type: item.item_type,
post_type: Map.get(item, :post_type, item.item_type),
title: item.title, title: item.title,
slug: item.slug, slug: item.slug,
status: item.status status: item.status
@@ -222,7 +230,17 @@ defmodule BDS.ImportAnalysis do
new_count: count_status(items, "new"), new_count: count_status(items, "new"),
update_count: count_status(items, "update"), update_count: count_status(items, "update"),
conflict_count: count_status(items, "conflict"), conflict_count: count_status(items, "conflict"),
duplicate_count: count_status(items, "duplicate") duplicate_count: count_status(items, "content-duplicate")
}
end
defp summarize_other_items(items) do
%{
new_count: count_status(items, "new"),
update_count: count_status(items, "update"),
conflict_count: count_status(items, "conflict"),
duplicate_count: count_status(items, "content-duplicate"),
types: items |> Enum.map(&Map.get(&1, :post_type)) |> Enum.reject(&is_nil/1) |> Enum.uniq()
} }
end end
@@ -231,7 +249,7 @@ defmodule BDS.ImportAnalysis do
new_count: count_status(items, "new"), new_count: count_status(items, "new"),
update_count: count_status(items, "update"), update_count: count_status(items, "update"),
conflict_count: count_status(items, "conflict"), conflict_count: count_status(items, "conflict"),
duplicate_count: count_status(items, "duplicate"), duplicate_count: count_status(items, "content-duplicate"),
missing_count: count_status(items, "missing") missing_count: count_status(items, "missing")
} }
end end
@@ -271,43 +289,97 @@ defmodule BDS.ImportAnalysis do
%{ %{
item_type: item.item_type, item_type: item.item_type,
item_name: Map.get(item, :slug) || Map.get(item, :filename), item_name: Map.get(item, :slug) || Map.get(item, :filename),
resolution: item.resolution || "skip", resolution: item.resolution || "ignore",
source_title: item.title, source_title: item.title,
existing_title: item.existing_title existing_title: item.existing_title
} }
end) end)
end end
defp macros(items) do defp analyze_macros(items) do
items macro_map =
|> Enum.flat_map(&discover_item_macros/1) Enum.reduce(items, %{}, fn item, acc ->
|> Enum.group_by(& &1.name) slug = Map.get(item, :slug)
|> Enum.map(fn {name, usages} ->
%{ Regex.scan(@shortcode_regex, item.content || "")
|> Enum.reduce(acc, fn [_match, name, raw_params], inner_acc ->
name = String.downcase(name)
params = parse_macro_params(raw_params)
params_key = serialize_params(params)
existing =
Map.get(inner_acc, name, %{
name: name, name: name,
usage_count: length(usages), total_count: 0,
parameters: usages |> Enum.flat_map(& &1.parameters) |> Enum.uniq() |> Enum.sort(), usages: %{},
post_slugs: MapSet.new()
})
usage =
existing.usages
|> Map.get(params_key, %{params: params, count: 0})
|> Map.update(:count, 1, &(&1 + 1))
updated = %{
existing
| total_count: existing.total_count + 1,
usages: Map.put(existing.usages, params_key, usage),
post_slugs:
if(is_binary(slug), do: MapSet.put(existing.post_slugs, slug), else: existing.post_slugs)
}
Map.put(inner_acc, name, updated)
end)
end)
discovered =
macro_map
|> Map.values()
|> Enum.map(fn macro ->
%{
name: macro.name,
mapped: false,
total_count: macro.total_count,
usages:
macro.usages
|> Map.values()
|> Enum.map(fn usage ->
%{
params: usage.params,
count: usage.count,
validation_status: "unknown" validation_status: "unknown"
} }
end),
post_slugs: MapSet.to_list(macro.post_slugs) |> Enum.sort()
}
end) end)
|> Enum.sort_by(& &1.name) |> Enum.sort_by(& &1.name)
end
defp discover_item_macros(item) do
Regex.scan(@shortcode_regex, item.content || "")
|> Enum.map(fn [_match, name, raw_params] ->
%{ %{
name: String.downcase(name), total: length(discovered),
parameters: macro_parameters(raw_params) mapped_count: Enum.count(discovered, & &1.mapped),
unmapped_count: Enum.count(discovered, &(not &1.mapped)),
discovered: discovered
} }
end)
end end
defp macro_parameters(raw_params) do defp parse_macro_params(raw_params) do
Regex.scan(@param_regex, raw_params) Regex.scan(@param_regex, raw_params)
|> Enum.map(fn [_, key | _rest] -> key end) |> Enum.map(fn captures ->
|> Enum.uniq() key = Enum.at(captures, 1)
|> Enum.sort() value = Enum.at(captures, 2) || Enum.at(captures, 3) || Enum.at(captures, 4) || ""
{key, value}
end)
|> Map.new()
end
defp serialize_params(params) when params == %{}, do: ""
defp serialize_params(params) do
params
|> Enum.sort_by(fn {k, _v} -> k end)
|> Enum.map(fn {k, v} -> "#{k}=#{v}" end)
|> Enum.join("|")
end end
defp increment_year(nil, acc), do: acc defp increment_year(nil, acc), do: acc
@@ -319,14 +391,32 @@ defmodule BDS.ImportAnalysis do
end end
end end
defp year_from(value) when is_integer(value), do: value defp year_from(value) when is_integer(value) do
cond do
value > 100_000_000_000 -> value |> DateTime.from_unix!(:millisecond) |> DateTime.shift_zone!("Etc/UTC") |> Map.get(:year)
value > 1_000_000_000 -> value |> DateTime.from_unix!(:second) |> Map.get(:year)
true -> value
end
rescue
_error -> nil
end
defp year_from(value) when is_binary(value) do defp year_from(value) when is_binary(value) do
normalized = String.replace(value, " ", "T")
case NaiveDateTime.from_iso8601(normalized) do
{:ok, naive} -> naive.year
_other ->
case DateTime.from_iso8601(value) do
{:ok, datetime, _offset} -> datetime.year
_ ->
case Regex.run(~r/(\d{4})/, value) do case Regex.run(~r/(\d{4})/, value) do
[_, year] -> String.to_integer(year) [_, year] -> String.to_integer(year)
_other -> nil _other -> nil
end end
end end
end
end
defp year_from(_value), do: nil defp year_from(_value), do: nil

View File

@@ -13,10 +13,21 @@ defmodule BDS.ImportExecution do
default_author = Keyword.get(opts, :default_author) || project_default_author(project_id) default_author = Keyword.get(opts, :default_author) || project_default_author(project_id)
uploads_folder_path = Keyword.get(opts, :uploads_folder_path) uploads_folder_path = Keyword.get(opts, :uploads_folder_path)
on_progress = Keyword.get(opts, :on_progress, fn _phase, _current, _total, _detail -> :ok end) on_progress = Keyword.get(opts, :on_progress, fn _phase, _current, _total, _detail -> :ok end)
taxonomies = taxonomy_items(normalized_report)
post_items = import_items(normalized_report, :posts) category_items = List.wrap(get_in(normalized_report, [:items, :categories]))
tag_items = List.wrap(get_in(normalized_report, [:items, :tags]))
category_mapping = build_taxonomy_mapping(category_items)
tag_mapping = build_taxonomy_mapping(tag_items)
post_items =
normalized_report
|> import_items(:posts)
|> Enum.filter(&(Map.get(&1, :post_type, "post") == "post"))
page_items = import_items(normalized_report, :pages) page_items = import_items(normalized_report, :pages)
media_items = import_items(normalized_report, :media) media_items = import_items(normalized_report, :media)
taxonomy_total = length(category_items) + length(tag_items)
result = %{ result = %{
success: true, success: true,
@@ -24,85 +35,87 @@ defmodule BDS.ImportExecution do
posts: %{imported: 0, skipped: 0, errors: 0}, posts: %{imported: 0, skipped: 0, errors: 0},
media: %{imported: 0, skipped: 0, errors: 0}, media: %{imported: 0, skipped: 0, errors: 0},
pages: %{imported: 0, skipped: 0, errors: 0}, pages: %{imported: 0, skipped: 0, errors: 0},
wp_id_to_post_id: %{},
errors: [] errors: []
} }
notify_progress(on_progress, "tags", 0, length(taxonomies), "Creating tags...") started_at = System.monotonic_time(:millisecond)
result = execute_taxonomies(taxonomies, project_id, result, on_progress)
notify_progress(on_progress, "posts", 0, length(post_items), "Importing posts...") notify_progress(on_progress, "tags", 0, taxonomy_total, "creating_tags", started_at)
result = execute_posts(post_items, project_id, default_author, result, on_progress) result = execute_taxonomies(category_items, tag_items, project_id, result, on_progress, started_at)
notify_progress(on_progress, "pages", 0, length(page_items), "Importing pages...") notify_progress(on_progress, "posts", 0, length(post_items), "importing_posts", started_at)
result = execute_pages(page_items, project_id, default_author, result, on_progress) result = execute_posts(post_items, project_id, default_author, tag_mapping, category_mapping, result, on_progress, :posts, started_at)
notify_progress(on_progress, "media", 0, length(media_items), "Importing media...") notify_progress(on_progress, "media", 0, length(media_items), "importing_media", started_at)
result = execute_media(media_items, project_id, default_author, result, on_progress, uploads_folder_path) result = execute_media(media_items, project_id, default_author, result, on_progress, uploads_folder_path, started_at)
notify_progress(on_progress, "complete", 1, 1, "Import complete") notify_progress(on_progress, "pages", 0, length(page_items), "importing_pages", started_at)
result = execute_posts(page_items, project_id, default_author, tag_mapping, category_mapping, result, on_progress, :pages, started_at)
notify_progress(on_progress, "complete", 1, 1, "import_complete", started_at)
{:ok, result} {:ok, result}
rescue rescue
error -> {:error, %{message: Exception.message(error)}} error -> {:error, %{message: Exception.message(error)}}
end end
defp execute_taxonomies(taxonomies, project_id, result, on_progress) do defp execute_taxonomies(category_items, tag_items, project_id, result, on_progress, started_at) do
Enum.reduce(taxonomies, result, fn item, acc -> items = category_items ++ tag_items
current = acc.tags.created + acc.tags.skipped + 1
if item.exists_in_project || item.mapped_to do
notify_progress(on_progress, "tags", current, length(taxonomies), "Skipping tag: #{item.name}")
put_in(acc, [:tags, :skipped], acc.tags.skipped + 1)
else
case Tags.create_tag(%{project_id: project_id, name: item.name}) do
{:ok, _tag} ->
notify_progress(on_progress, "tags", current, length(taxonomies), "Created tag: #{item.name}")
put_in(acc, [:tags, :created], acc.tags.created + 1)
{:error, _reason} ->
notify_progress(on_progress, "tags", current, length(taxonomies), "Skipping tag: #{item.name}")
put_in(acc, [:tags, :skipped], acc.tags.skipped + 1)
end
end
end)
end
defp execute_posts(items, project_id, default_author, result, on_progress) do
total = length(items)
Enum.with_index(items, 1)
|> Enum.reduce(result, fn {item, index}, acc ->
notify_progress(on_progress, "posts", index, total, "Processing: #{item.title}")
execute_post_item(project_id, item, acc, :posts, default_author)
end)
end
defp execute_pages(items, project_id, default_author, result, on_progress) do
total = length(items)
Enum.with_index(items, 1)
|> Enum.reduce(result, fn {item, index}, acc ->
notify_progress(on_progress, "pages", index, total, "Processing: #{item.title}")
execute_post_item(project_id, ensure_page_category(item), acc, :pages, default_author)
end)
end
defp execute_media(items, project_id, default_author, result, on_progress, uploads_folder_path) do
total = length(items) total = length(items)
items items
|> Enum.with_index(1) |> Enum.with_index(1)
|> Enum.reduce(result, fn {item, index}, acc -> |> Enum.reduce(result, fn {item, index}, acc ->
notify_progress(on_progress, "media", index, total, "Processing: #{item.filename}") cond do
Map.get(item, :exists_in_project) || not is_nil(Map.get(item, :mapped_to)) ->
notify_progress(on_progress, "tags", index, total, "skipped_tag:#{item.name}", started_at)
put_in(acc, [:tags, :skipped], acc.tags.skipped + 1)
true ->
case Tags.create_tag(%{project_id: project_id, name: item.name}) do
{:ok, _tag} ->
notify_progress(on_progress, "tags", index, total, "created_tag:#{item.name}", started_at)
put_in(acc, [:tags, :created], acc.tags.created + 1)
{:error, _reason} ->
notify_progress(on_progress, "tags", index, total, "skipped_tag:#{item.name}", started_at)
put_in(acc, [:tags, :skipped], acc.tags.skipped + 1)
end
end
end)
end
defp execute_posts(items, project_id, default_author, tag_mapping, category_mapping, result, on_progress, bucket, started_at) do
total = length(items)
phase = Atom.to_string(bucket)
Enum.with_index(items, 1)
|> Enum.reduce(result, fn {item, index}, acc ->
notify_progress(on_progress, phase, index, total, "processing:#{item.title}", started_at)
execute_post_item(project_id, maybe_apply_page_category(item, bucket), acc, bucket, default_author, tag_mapping, category_mapping)
end)
end
defp execute_media(items, project_id, default_author, result, on_progress, uploads_folder_path, started_at) do
total = length(items)
items
|> Enum.with_index(1)
|> Enum.reduce(result, fn {item, index}, acc ->
notify_progress(on_progress, "media", index, total, "processing:#{item.filename}", started_at)
cond do cond do
item.status in ["update", "duplicate", "missing"] -> item.status == "missing" ->
put_in(acc, [:media, :skipped], acc.media.skipped + 1) put_in(acc, [:media, :skipped], acc.media.skipped + 1)
item.status == "conflict" and item.resolution != "import" and item.resolution != "merge" -> item.status in ["update", "content-duplicate", "duplicate"] ->
put_in(acc, [:media, :skipped], acc.media.skipped + 1)
item.status == "conflict" and resolve_conflict(item) == "ignore" ->
put_in(acc, [:media, :skipped], acc.media.skipped + 1) put_in(acc, [:media, :skipped], acc.media.skipped + 1)
true -> true ->
case import_media_item(project_id, item, default_author, uploads_folder_path) do case import_media_item(project_id, item, default_author, uploads_folder_path, acc) do
{:ok, _media} -> put_in(acc, [:media, :imported], acc.media.imported + 1) {:ok, _media} -> put_in(acc, [:media, :imported], acc.media.imported + 1)
{:error, reason} -> {:error, reason} ->
acc acc
@@ -114,17 +127,21 @@ defmodule BDS.ImportExecution do
end) end)
end end
defp execute_post_item(project_id, item, result, bucket, default_author) do defp execute_post_item(project_id, item, result, bucket, default_author, tag_mapping, category_mapping) do
cond do cond do
item.status in ["update", "duplicate"] -> item.status in ["update", "content-duplicate", "duplicate"] ->
put_in(result, [bucket, :skipped], get_in(result, [bucket, :skipped]) + 1) put_in(result, [bucket, :skipped], get_in(result, [bucket, :skipped]) + 1)
item.status == "conflict" and item.resolution not in ["import", "merge"] -> item.status == "conflict" and resolve_conflict(item) == "ignore" ->
put_in(result, [bucket, :skipped], get_in(result, [bucket, :skipped]) + 1) put_in(result, [bucket, :skipped], get_in(result, [bucket, :skipped]) + 1)
item.status == "conflict" and item.resolution == "merge" -> item.status == "conflict" and resolve_conflict(item) == "overwrite" ->
case merge_post_item(item, default_author) do case overwrite_post_item(item, default_author, tag_mapping, category_mapping) do
{:ok, _post} -> put_in(result, [bucket, :imported], get_in(result, [bucket, :imported]) + 1) {:ok, post} ->
result
|> put_in([bucket, :imported], get_in(result, [bucket, :imported]) + 1)
|> track_wp_id(item, post)
{:error, reason} -> {:error, reason} ->
result result
|> put_in([bucket, :errors], get_in(result, [bucket, :errors]) + 1) |> put_in([bucket, :errors], get_in(result, [bucket, :errors]) + 1)
@@ -133,8 +150,12 @@ defmodule BDS.ImportExecution do
end end
true -> true ->
case create_post_item(project_id, item, default_author) do case create_post_item(project_id, item, default_author, tag_mapping, category_mapping) do
{:ok, _post} -> put_in(result, [bucket, :imported], get_in(result, [bucket, :imported]) + 1) {:ok, post} ->
result
|> put_in([bucket, :imported], get_in(result, [bucket, :imported]) + 1)
|> track_wp_id(item, post)
{:error, reason} -> {:error, reason} ->
result result
|> put_in([bucket, :errors], get_in(result, [bucket, :errors]) + 1) |> put_in([bucket, :errors], get_in(result, [bucket, :errors]) + 1)
@@ -144,17 +165,17 @@ defmodule BDS.ImportExecution do
end end
end end
defp create_post_item(project_id, item, default_author) do defp create_post_item(project_id, item, default_author, tag_mapping, category_mapping) do
attrs = post_create_attrs(project_id, item, default_author) attrs = post_create_attrs(project_id, item, default_author, tag_mapping, category_mapping)
with {:ok, post} <- Posts.create_post(attrs), with {:ok, post} <- Posts.create_post(attrs),
:ok <- prepare_created_post(post.id, item), :ok <- prepare_created_post(post.id, item, tag_mapping, category_mapping),
{:ok, published_post} <- maybe_publish(post.id, item) do {:ok, published_post} <- maybe_publish(post.id, item) do
{:ok, published_post} {:ok, published_post}
end end
end end
defp merge_post_item(item, default_author) do defp overwrite_post_item(item, default_author, tag_mapping, category_mapping) do
case Repo.get(Post, item.existing_id) do case Repo.get(Post, item.existing_id) do
nil -> {:error, :not_found} nil -> {:error, :not_found}
@@ -164,39 +185,92 @@ defmodule BDS.ImportExecution do
excerpt: item.excerpt, excerpt: item.excerpt,
content: item.content_markdown, content: item.content_markdown,
author: item.author || default_author, author: item.author || default_author,
tags: item.tags, tags: resolve_taxonomy(item.tags, tag_mapping),
categories: item.categories, categories: resolve_taxonomy(item.categories, category_mapping),
checksum: item.content_checksum checksum: item.content_checksum
}) })
end end
end end
defp import_media_item(project_id, item, default_author, uploads_folder_path) do defp import_media_item(project_id, item, default_author, uploads_folder_path, result) do
source_path = item.source_file || uploads_source_path(item.relative_path, uploads_folder_path) source_path = item.source_file || uploads_source_path(item.relative_path, uploads_folder_path)
checksum = if(source_path != nil and File.exists?(source_path), do: md5(File.read!(source_path)), else: nil) checksum = if(source_path != nil and File.exists?(source_path), do: md5(File.read!(source_path)), else: nil)
linked_post_ids = parent_post_ids(item, result)
if source_path && File.exists?(source_path) do if source_path && File.exists?(source_path) do
case item.status do case {item.status, resolve_conflict(item)} do
"conflict" when item.resolution == "merge" and item.existing_id -> {"conflict", "overwrite"} when item.existing_id != nil ->
with {:ok, _updated_media} <- Media.update_media(item.existing_id, %{title: item.title, alt: item.description, author: default_author}) do with {:ok, _replaced} <- Media.replace_media_file(item.existing_id, source_path),
{:ok, _updated_media} <-
Media.update_media(item.existing_id, %{
title: item.title,
alt: item.description,
author: default_author
}) do
link_media(linked_post_ids, item.existing_id)
{:ok, Repo.get!(Media.Media, item.existing_id)} {:ok, Repo.get!(Media.Media, item.existing_id)}
end end
_other -> _ ->
Media.import_media(%{ attrs = %{
project_id: project_id, project_id: project_id,
source_path: source_path, source_path: source_path,
title: item.title, title: item.title,
alt: item.description, alt: item.description,
author: default_author, author: default_author,
checksum: checksum checksum: checksum
}) }
attrs = if linked_post_ids == [], do: attrs, else: Map.put(attrs, :linked_post_ids, linked_post_ids)
case Media.import_media(attrs) do
{:ok, %{id: media_id} = media} ->
link_media(linked_post_ids, media_id)
{:ok, media}
other ->
other
end
end end
else else
{:error, :missing_source_file} {:error, :missing_source_file}
end end
end end
defp link_media([], _media_id), do: :ok
defp link_media(post_ids, media_id) when is_list(post_ids) do
Enum.each(post_ids, fn post_id ->
try do
Media.link_media_to_post(media_id, post_id)
rescue
_ -> :ok
catch
_, _ -> :ok
end
end)
:ok
end
defp parent_post_ids(item, result) do
case Map.get(item, :parent_wp_id) do
nil -> []
0 -> []
wp_id ->
case Map.get(result.wp_id_to_post_id, wp_id) do
nil -> []
post_id -> [post_id]
end
end
end
defp track_wp_id(result, %{wp_id: wp_id}, %{id: post_id}) when is_integer(wp_id) and not is_nil(post_id) do
update_in(result, [:wp_id_to_post_id], &Map.put(&1, wp_id, post_id))
end
defp track_wp_id(result, _item, _post), do: result
defp maybe_publish(post_id, item) do defp maybe_publish(post_id, item) do
case item.wp_status do case item.wp_status do
"publish" -> Posts.publish_post(post_id) "publish" -> Posts.publish_post(post_id)
@@ -204,7 +278,7 @@ defmodule BDS.ImportExecution do
end end
end end
defp prepare_created_post(post_id, item) do defp prepare_created_post(post_id, item, tag_mapping, category_mapping) do
case Repo.get(Post, post_id) do case Repo.get(Post, post_id) do
nil -> nil ->
{:error, :not_found} {:error, :not_found}
@@ -222,8 +296,8 @@ defmodule BDS.ImportExecution do
excerpt: item.excerpt, excerpt: item.excerpt,
content: item.content_markdown, content: item.content_markdown,
author: item.author, author: item.author,
tags: item.tags, tags: resolve_taxonomy(item.tags, tag_mapping),
categories: item.categories, categories: resolve_taxonomy(item.categories, category_mapping),
checksum: item.content_checksum, checksum: item.content_checksum,
created_at: created_at, created_at: created_at,
updated_at: updated_at, updated_at: updated_at,
@@ -238,31 +312,74 @@ defmodule BDS.ImportExecution do
end end
defp desired_slug(post, item) do defp desired_slug(post, item) do
if item.status == "conflict" and item.resolution == "import" do if item.status == "conflict" and resolve_conflict(item) == "import" do
post.slug post.slug
else else
item.slug || post.slug item.slug || post.slug
end end
end end
defp post_create_attrs(project_id, item, default_author) do defp post_create_attrs(project_id, item, default_author, tag_mapping, category_mapping) do
%{ %{
project_id: project_id, project_id: project_id,
title: item.title, title: item.title,
excerpt: item.excerpt, excerpt: item.excerpt,
content: item.content_markdown, content: item.content_markdown,
author: item.author || default_author, author: item.author || default_author,
tags: item.tags, tags: resolve_taxonomy(item.tags, tag_mapping),
categories: item.categories, categories: resolve_taxonomy(item.categories, category_mapping),
checksum: item.content_checksum checksum: item.content_checksum
} }
end end
defp ensure_page_category(item) do defp maybe_apply_page_category(item, :pages) do
categories = (item.categories || []) |> Enum.uniq() |> Enum.concat(["page"]) |> Enum.uniq() categories = (Map.get(item, :categories) || []) |> Enum.uniq() |> Enum.concat(["page"]) |> Enum.uniq()
%{item | categories: categories} %{item | categories: categories}
end end
defp maybe_apply_page_category(item, _bucket), do: item
defp build_taxonomy_mapping(items) do
Enum.reduce(items, %{}, fn item, acc ->
key = item.name |> to_string() |> String.downcase()
resolved =
cond do
present_string?(Map.get(item, :mapped_to)) -> String.downcase(item.mapped_to)
true -> key
end
Map.put(acc, key, %{resolved: resolved, needs_creation: not item.exists_in_project and not present_string?(Map.get(item, :mapped_to))})
end)
end
defp resolve_taxonomy(items, mapping) when is_list(items) do
items
|> Enum.map(fn item ->
key = item |> to_string() |> String.downcase()
case Map.get(mapping, key) do
%{resolved: resolved} -> resolved
_ -> key
end
end)
|> Enum.uniq()
end
defp resolve_taxonomy(_items, _mapping), do: []
defp resolve_conflict(item) do
raw = Map.get(item, :resolution)
normalize_resolution(raw)
end
defp normalize_resolution("ignore"), do: "ignore"
defp normalize_resolution("skip"), do: "ignore"
defp normalize_resolution("overwrite"), do: "overwrite"
defp normalize_resolution("merge"), do: "overwrite"
defp normalize_resolution("import"), do: "import"
defp normalize_resolution(_other), do: "ignore"
defp import_items(report, bucket) do defp import_items(report, bucket) do
items = get_in(report, [:items, bucket]) || [] items = get_in(report, [:items, bucket]) || []
details = get_in(report, [:details, bucket]) || [] details = get_in(report, [:details, bucket]) || []
@@ -323,10 +440,6 @@ defmodule BDS.ImportExecution do
defp parse_timestamp(_value), do: nil defp parse_timestamp(_value), do: nil
defp taxonomy_items(report) do
List.wrap(get_in(report, [:items, :categories])) ++ List.wrap(get_in(report, [:items, :tags]))
end
defp uploads_source_path(relative_path, uploads_folder_path) defp uploads_source_path(relative_path, uploads_folder_path)
defp uploads_source_path(relative_path, uploads_folder_path) defp uploads_source_path(relative_path, uploads_folder_path)
@@ -336,22 +449,39 @@ defmodule BDS.ImportExecution do
defp uploads_source_path(_relative_path, _uploads_folder_path), do: nil defp uploads_source_path(_relative_path, _uploads_folder_path), do: nil
defp notify_progress(callback, phase, current, total, detail) when is_function(callback, 4) do defp notify_progress(callback, phase, current, total, detail, started_at) when is_function(callback, 4) do
eta = compute_eta(current, total, started_at)
try do
callback.(phase, current, total, %{detail: detail, eta: eta})
rescue
_error ->
try do try do
callback.(phase, current, total, detail) callback.(phase, current, total, detail)
rescue rescue
_error -> :ok _error -> :ok
end end
end
:ok :ok
end end
defp compute_eta(current, total, started_at) when is_integer(current) and is_integer(total) and current > 0 and total > 0 and current <= total do
elapsed = System.monotonic_time(:millisecond) - started_at
if current >= total, do: 0, else: trunc(elapsed / current * (total - current))
end
defp compute_eta(_current, _total, _started_at), do: nil
defp md5(binary) do defp md5(binary) do
:md5 :md5
|> :crypto.hash(binary) |> :crypto.hash(binary)
|> Base.encode16(case: :lower) |> Base.encode16(case: :lower)
end end
defp present_string?(value) when is_binary(value) and value != "", do: true
defp present_string?(_value), do: false
defp project_default_author(project_id) do defp project_default_author(project_id) do
{:ok, metadata} = Metadata.get_project_metadata(project_id) {:ok, metadata} = Metadata.get_project_metadata(project_id)
Map.get(metadata, :default_author) Map.get(metadata, :default_author)

View File

@@ -20,7 +20,7 @@ defmodule BDS.WxrParser do
[channel] -> [channel] ->
%{ %{
site: parse_site(channel), site: parse_site(channel),
posts: parse_items(channel, "post"), posts: parse_post_like_items(channel),
pages: parse_items(channel, "page"), pages: parse_items(channel, "page"),
media: parse_media(channel), media: parse_media(channel),
categories: parse_categories(channel), categories: parse_categories(channel),
@@ -73,6 +73,16 @@ defmodule BDS.WxrParser do
|> Enum.map(&parse_post_item/1) |> Enum.map(&parse_post_item/1)
end end
defp parse_post_like_items(channel) do
channel
|> direct_children_named("item")
|> Enum.filter(fn item ->
type = child_text(item, "post_type")
type not in ["", "attachment", "page"]
end)
|> Enum.map(&parse_post_item/1)
end
defp parse_media(channel) do defp parse_media(channel) do
channel channel
|> direct_children_named("item") |> direct_children_named("item")

View File

@@ -217,6 +217,24 @@
"importAnalysis.usedIn": "Verwendet in: %{items}%{more}", "importAnalysis.usedIn": "Verwendet in: %{items}%{more}",
"importAnalysis.moreSuffix": ", +%{count} weitere", "importAnalysis.moreSuffix": ", +%{count} weitere",
"importAnalysis.noParameters": "(keine Parameter)", "importAnalysis.noParameters": "(keine Parameter)",
"importAnalysis.other": "Sonstige",
"importAnalysis.otherDescription": "Einträge, die weder Beiträge noch Seiten sind (Revisionen, Navigationsmenüs usw.) werden nicht importiert.",
"importAnalysis.browse": "Durchsuchen...",
"importAnalysis.eta": "Verbleibend: %{value}",
"importAnalysis.etaSeconds": "%{count}s",
"importAnalysis.etaMinutes": "%{minutes}m %{seconds}s",
"importAnalysis.phase.tags": "Tags & Kategorien werden importiert...",
"importAnalysis.phase.posts": "Beiträge werden importiert...",
"importAnalysis.phase.media": "Medien werden importiert...",
"importAnalysis.phase.pages": "Seiten werden importiert...",
"importAnalysis.phase.complete": "Import abgeschlossen",
"importAnalysis.analysisPhase.parsing": "WXR-Datei wird gelesen...",
"importAnalysis.analysisPhase.scanning": "Einträge werden gescannt...",
"importAnalysis.analysisPhase.taxonomies": "Taxonomien werden analysiert...",
"importAnalysis.analysisPhase.posts": "Beiträge werden analysiert...",
"importAnalysis.analysisPhase.media": "Medien werden analysiert...",
"importAnalysis.analysisPhase.complete": "Analyse abgeschlossen",
"importAnalysis.contentDuplicate": "Duplikat",
"sidebar.scripts.newScript": "Neues Skript", "sidebar.scripts.newScript": "Neues Skript",
"sidebar.templates.newTemplate": "Neue Vorlage", "sidebar.templates.newTemplate": "Neue Vorlage",
"sidebar.results": "%{count} Ergebnisse", "sidebar.results": "%{count} Ergebnisse",

View File

@@ -217,6 +217,24 @@
"importAnalysis.usedIn": "Used in: %{items}%{more}", "importAnalysis.usedIn": "Used in: %{items}%{more}",
"importAnalysis.moreSuffix": ", +%{count} more", "importAnalysis.moreSuffix": ", +%{count} more",
"importAnalysis.noParameters": "(no parameters)", "importAnalysis.noParameters": "(no parameters)",
"importAnalysis.other": "Other",
"importAnalysis.otherDescription": "Items that are not posts or pages (revisions, navigation menus, etc.) — not imported.",
"importAnalysis.browse": "Browse...",
"importAnalysis.eta": "ETA: %{value}",
"importAnalysis.etaSeconds": "%{count}s",
"importAnalysis.etaMinutes": "%{minutes}m %{seconds}s",
"importAnalysis.phase.tags": "Importing tags & categories...",
"importAnalysis.phase.posts": "Importing posts...",
"importAnalysis.phase.media": "Importing media...",
"importAnalysis.phase.pages": "Importing pages...",
"importAnalysis.phase.complete": "Import complete",
"importAnalysis.analysisPhase.parsing": "Parsing WXR file...",
"importAnalysis.analysisPhase.scanning": "Scanning entries...",
"importAnalysis.analysisPhase.taxonomies": "Analyzing taxonomies...",
"importAnalysis.analysisPhase.posts": "Analyzing posts...",
"importAnalysis.analysisPhase.media": "Analyzing media...",
"importAnalysis.analysisPhase.complete": "Analysis complete",
"importAnalysis.contentDuplicate": "duplicate",
"sidebar.scripts.newScript": "New Script", "sidebar.scripts.newScript": "New Script",
"sidebar.templates.newTemplate": "New Template", "sidebar.templates.newTemplate": "New Template",
"sidebar.results": "%{count} results", "sidebar.results": "%{count} results",

View File

@@ -217,6 +217,24 @@
"importAnalysis.usedIn": "Usado en: %{items}%{more}", "importAnalysis.usedIn": "Usado en: %{items}%{more}",
"importAnalysis.moreSuffix": ", +%{count} más", "importAnalysis.moreSuffix": ", +%{count} más",
"importAnalysis.noParameters": "(sin parámetros)", "importAnalysis.noParameters": "(sin parámetros)",
"importAnalysis.other": "Otros",
"importAnalysis.otherDescription": "Elementos que no son entradas ni páginas (revisiones, menús de navegación, etc.): no se importan.",
"importAnalysis.browse": "Examinar...",
"importAnalysis.eta": "Tiempo restante: %{value}",
"importAnalysis.etaSeconds": "%{count}s",
"importAnalysis.etaMinutes": "%{minutes}m %{seconds}s",
"importAnalysis.phase.tags": "Importando etiquetas y categorías...",
"importAnalysis.phase.posts": "Importando entradas...",
"importAnalysis.phase.media": "Importando medios...",
"importAnalysis.phase.pages": "Importando páginas...",
"importAnalysis.phase.complete": "Importación completada",
"importAnalysis.analysisPhase.parsing": "Analizando archivo WXR...",
"importAnalysis.analysisPhase.scanning": "Escaneando entradas...",
"importAnalysis.analysisPhase.taxonomies": "Analizando taxonomías...",
"importAnalysis.analysisPhase.posts": "Analizando entradas...",
"importAnalysis.analysisPhase.media": "Analizando medios...",
"importAnalysis.analysisPhase.complete": "Análisis completado",
"importAnalysis.contentDuplicate": "duplicado",
"sidebar.scripts.newScript": "Nuevo script", "sidebar.scripts.newScript": "Nuevo script",
"sidebar.templates.newTemplate": "Nueva plantilla", "sidebar.templates.newTemplate": "Nueva plantilla",
"sidebar.results": "%{count} resultados", "sidebar.results": "%{count} resultados",

View File

@@ -217,6 +217,24 @@
"importAnalysis.usedIn": "Utilisé dans : %{items}%{more}", "importAnalysis.usedIn": "Utilisé dans : %{items}%{more}",
"importAnalysis.moreSuffix": ", +%{count} de plus", "importAnalysis.moreSuffix": ", +%{count} de plus",
"importAnalysis.noParameters": "(aucun paramètre)", "importAnalysis.noParameters": "(aucun paramètre)",
"importAnalysis.other": "Autre",
"importAnalysis.otherDescription": "Éléments qui ne sont ni des articles ni des pages (révisions, menus de navigation, etc.) — non importés.",
"importAnalysis.browse": "Parcourir...",
"importAnalysis.eta": "Temps restant : %{value}",
"importAnalysis.etaSeconds": "%{count}s",
"importAnalysis.etaMinutes": "%{minutes}m %{seconds}s",
"importAnalysis.phase.tags": "Importation des étiquettes et catégories...",
"importAnalysis.phase.posts": "Importation des articles...",
"importAnalysis.phase.media": "Importation des médias...",
"importAnalysis.phase.pages": "Importation des pages...",
"importAnalysis.phase.complete": "Importation terminée",
"importAnalysis.analysisPhase.parsing": "Analyse du fichier WXR...",
"importAnalysis.analysisPhase.scanning": "Analyse des entrées...",
"importAnalysis.analysisPhase.taxonomies": "Analyse des taxonomies...",
"importAnalysis.analysisPhase.posts": "Analyse des articles...",
"importAnalysis.analysisPhase.media": "Analyse des médias...",
"importAnalysis.analysisPhase.complete": "Analyse terminée",
"importAnalysis.contentDuplicate": "doublon",
"sidebar.scripts.newScript": "Nouveau script", "sidebar.scripts.newScript": "Nouveau script",
"sidebar.templates.newTemplate": "Nouveau modèle", "sidebar.templates.newTemplate": "Nouveau modèle",
"sidebar.results": "%{count} résultats", "sidebar.results": "%{count} résultats",

View File

@@ -217,6 +217,24 @@
"importAnalysis.usedIn": "Usato in: %{items}%{more}", "importAnalysis.usedIn": "Usato in: %{items}%{more}",
"importAnalysis.moreSuffix": ", +%{count} altri", "importAnalysis.moreSuffix": ", +%{count} altri",
"importAnalysis.noParameters": "(nessun parametro)", "importAnalysis.noParameters": "(nessun parametro)",
"importAnalysis.other": "Altro",
"importAnalysis.otherDescription": "Elementi che non sono articoli o pagine (revisioni, menu di navigazione, ecc.) — non importati.",
"importAnalysis.browse": "Sfoglia...",
"importAnalysis.eta": "Tempo rimanente: %{value}",
"importAnalysis.etaSeconds": "%{count}s",
"importAnalysis.etaMinutes": "%{minutes}m %{seconds}s",
"importAnalysis.phase.tags": "Importazione di tag e categorie...",
"importAnalysis.phase.posts": "Importazione degli articoli...",
"importAnalysis.phase.media": "Importazione dei media...",
"importAnalysis.phase.pages": "Importazione delle pagine...",
"importAnalysis.phase.complete": "Importazione completata",
"importAnalysis.analysisPhase.parsing": "Analisi del file WXR...",
"importAnalysis.analysisPhase.scanning": "Scansione delle voci...",
"importAnalysis.analysisPhase.taxonomies": "Analisi delle tassonomie...",
"importAnalysis.analysisPhase.posts": "Analisi degli articoli...",
"importAnalysis.analysisPhase.media": "Analisi dei media...",
"importAnalysis.analysisPhase.complete": "Analisi completata",
"importAnalysis.contentDuplicate": "duplicato",
"sidebar.scripts.newScript": "Nuovo script", "sidebar.scripts.newScript": "Nuovo script",
"sidebar.templates.newTemplate": "Nuovo modello", "sidebar.templates.newTemplate": "Nuovo modello",
"sidebar.results": "%{count} risultati", "sidebar.results": "%{count} risultati",

View File

@@ -97,16 +97,29 @@ defmodule BDS.Desktop.ImportShellLiveTest do
%{ %{
item_type: "post", item_type: "post",
item_name: "hello-world", item_name: "hello-world",
resolution: "skip", resolution: "ignore",
source_title: "Hello World", source_title: "Hello World",
existing_title: "Existing Hello" existing_title: "Existing Hello"
} }
], ],
macros: [%{name: "gallery", usage_count: 1, parameters: ["ids"], validation_status: "unknown"}], macros: %{
total: 1,
mapped_count: 0,
unmapped_count: 1,
discovered: [
%{
name: "gallery",
mapped: false,
total_count: 1,
usages: [%{params: %{"ids" => "1,2"}, count: 1, validation_status: "unknown"}],
post_slugs: ["hello-world"]
}
]
},
items: %{ items: %{
posts: [ posts: [
%{item_type: "post", title: "Hello World", slug: "hello-world", status: "new"}, %{item_type: "post", title: "Hello World", slug: "hello-world", status: "new"},
%{item_type: "post", title: "Conflict Me", slug: "conflict-me", status: "conflict", resolution: "skip"} %{item_type: "post", title: "Conflict Me", slug: "conflict-me", status: "conflict", resolution: "ignore"}
], ],
pages: [ pages: [
%{item_type: "page", title: "About", slug: "about", status: "new"} %{item_type: "page", title: "About", slug: "about", status: "new"}
@@ -145,7 +158,7 @@ defmodule BDS.Desktop.ImportShellLiveTest do
title: "Conflict Me", title: "Conflict Me",
slug: "conflict-me", slug: "conflict-me",
status: "conflict", status: "conflict",
resolution: "skip", resolution: "ignore",
wp_status: "publish", wp_status: "publish",
author: "Importer", author: "Importer",
categories: ["General"], categories: ["General"],

View File

@@ -50,36 +50,30 @@ defmodule BDS.ImportAnalysisTest do
row.year == 2024 and row.post_count == 2 and row.media_count == 1 row.year == 2024 and row.post_count == 2 and row.media_count == 1
end) end)
assert [%{name: "gallery", usage_count: 1, parameters: ["ids"], validation_status: "unknown"}] = report.macros assert %{
total: 1,
mapped_count: 0,
unmapped_count: 1,
discovered: [
%{
name: "gallery",
mapped: false,
total_count: 1,
usages: [%{params: %{"ids" => "1,2"}, count: 1, validation_status: "unknown"}],
post_slugs: ["hello-world"]
}
]
} = report.macros
assert report.conflicts == [] assert report.conflicts == []
assert report.items.posts == [ assert [%{title: "Hello World", slug: "hello-world", status: "new", item_type: "post", post_type: "post"}] =
%{ report.items.posts
title: "Hello World",
slug: "hello-world",
status: "new",
item_type: "post"
}
]
assert report.items.pages == [ assert [%{title: "About", slug: "about", status: "new", item_type: "page"} = page_item] = report.items.pages
%{ assert Map.get(page_item, :post_type) == "page"
title: "About",
slug: "about",
status: "new",
item_type: "page"
}
]
assert report.items.media == [ assert [%{title: "Import Asset", filename: "import-asset.txt", relative_path: "2024/05/import-asset.txt", status: "new", item_type: "media"}] =
%{ report.items.media
title: "Import Asset",
filename: "import-asset.txt",
relative_path: "2024/05/import-asset.txt",
status: "new",
item_type: "media"
}
]
end end
test "analyze_wxr detects update, conflict, duplicate, existing taxonomy, and missing uploads", %{project: project, temp_dir: temp_dir} do test "analyze_wxr detects update, conflict, duplicate, existing taxonomy, and missing uploads", %{project: project, temp_dir: temp_dir} do
@@ -140,12 +134,12 @@ defmodule BDS.ImportAnalysisTest do
assert report.tag_stats == %{existing_count: 1, mapped_count: 0, new_count: 0} assert report.tag_stats == %{existing_count: 1, mapped_count: 0, new_count: 0}
assert Enum.any?(report.conflicts, fn conflict -> assert Enum.any?(report.conflicts, fn conflict ->
conflict.item_type == "post" and conflict.item_name == "conflict-me" and conflict.resolution == "skip" conflict.item_type == "post" and conflict.item_name == "conflict-me" and conflict.resolution == "ignore"
end) end)
assert Enum.any?(report.items.posts, &(&1.slug == "update-me" and &1.status == "update")) assert Enum.any?(report.items.posts, &(&1.slug == "update-me" and &1.status == "update"))
assert Enum.any?(report.items.posts, &(&1.slug == "conflict-me" and &1.status == "conflict")) assert Enum.any?(report.items.posts, &(&1.slug == "conflict-me" and &1.status == "conflict"))
assert Enum.any?(report.items.posts, &(&1.slug == "duplicate-me" and &1.status == "duplicate")) assert Enum.any?(report.items.posts, &(&1.slug == "duplicate-me" and &1.status == "content-duplicate"))
assert Enum.any?(report.items.media, &(&1.filename == "missing-asset.txt" and &1.status == "missing")) assert Enum.any?(report.items.media, &(&1.filename == "missing-asset.txt" and &1.status == "missing"))
end end

View File

@@ -90,7 +90,6 @@ defmodule BDS.ImportExecutionTest do
assert {:ok, imported_result} = ImportExecution.execute_import(project.id, import_report, default_author: "Imported Author") assert {:ok, imported_result} = ImportExecution.execute_import(project.id, import_report, default_author: "Imported Author")
assert imported_result.posts == %{imported: 1, skipped: 0, errors: 0} assert imported_result.posts == %{imported: 1, skipped: 0, errors: 0}
slugs = Repo.all(from post in Posts.Post, where: post.project_id == ^project.id, select: post.slug, order_by: [asc: post.slug]) slugs = Repo.all(from post in Posts.Post, where: post.project_id == ^project.id, select: post.slug, order_by: [asc: post.slug])
assert length(slugs) == 2 assert length(slugs) == 2
assert "conflict-me" in slugs assert "conflict-me" in slugs
@@ -116,11 +115,11 @@ defmodule BDS.ImportExecutionTest do
end end
) )
assert_received {:execution_progress, "tags", 0, 2, "Creating tags..."} assert_received {:execution_progress, "tags", 0, 2, %{detail: "creating_tags"}}
assert_received {:execution_progress, "posts", 0, 1, "Importing posts..."} assert_received {:execution_progress, "posts", 0, 1, %{detail: "importing_posts"}}
assert_received {:execution_progress, "media", 0, 1, "Importing media..."} assert_received {:execution_progress, "media", 0, 1, %{detail: "importing_media"}}
assert_received {:execution_progress, "pages", 0, 1, "Importing pages..."} assert_received {:execution_progress, "pages", 0, 1, %{detail: "importing_pages"}}
assert_received {:execution_progress, "complete", 1, 1, "Import complete"} assert_received {:execution_progress, "complete", 1, 1, %{detail: "import_complete"}}
end end
defp sha256(value) do defp sha256(value) do