summaryrefslogtreecommitdiff
path: root/app/presenters/packages/pypi/package_presenter.rb
blob: 1cb11c7be1a31890d7d8be94c9080d69839b616d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# frozen_string_literal: true

# Display package version data acording to PyPI
# Simple API: https://warehouse.pypa.io/api-reference/legacy/#simple-project-api
module Packages
  module Pypi
    class PackagePresenter
      include API::Helpers::RelatedResourcesHelpers

      def initialize(packages, project)
        @packages = packages
        @project = project
      end

      # Returns the HTML body for PyPI simple API.
      # Basically a list of package download links for a specific
      # package
      def body
        <<-HTML
        <!DOCTYPE html>
        <html>
          <head>
            <title>Links for #{escape(name)}</title>
          </head>
          <body>
            <h1>Links for #{escape(name)}</h1>
            #{links}
          </body>
        </html>
        HTML
      end

      private

      def links
        refs = []

        @packages.map do |package|
          package.package_files.each do |file|
            url = build_pypi_package_path(file)

            refs << package_link(url, package.pypi_metadatum.required_python, file.file_name)
          end
        end

        refs.join
      end

      def package_link(url, required_python, filename)
        "<a href=\"#{url}\" data-requires-python=\"#{escape(required_python)}\">#{filename}</a><br>"
      end

      def build_pypi_package_path(file)
        expose_url(
          api_v4_projects_packages_pypi_files_file_identifier_path(
            {
              id: @project.id,
              sha256: file.file_sha256,
              file_identifier: file.file_name
            },
            true
          )
        ) + "#sha256=#{file.file_sha256}"
      end

      def name
        @packages.first.name
      end

      def escape(str)
        ERB::Util.html_escape(str)
      end
    end
  end
end