abizvn-media 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 46483b4713a424484b16dbff310e18cb8f4438deda246f41a3ba94b132912ee3
4
+ data.tar.gz: ac2a17bd8c73ae16b6f90068bdbf8725c7409e5b7aa41adb260f5500bd563bbb
5
+ SHA512:
6
+ metadata.gz: 6f2d816884125ab57a9414fd95d14a016413fdbc5dabc302fa44be7a81139e19259ed244f2a76a36632b4970ef52a51873f40e45397f6d40693d60c0e33d7e7d
7
+ data.tar.gz: cfd1e5f58451b4186ae64482cdbc2ded7fd05363a457e1b93ec7bf27c5ebf7b7b31b5b5849635dc1f33cf995ea0e96cd2c92e798829ba43e00baddf1a8ab8adf
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright Juan
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Abizvn::Media
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem "abizvn-media"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install abizvn-media
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require "bundler/setup"
2
+
3
+ APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
4
+ load "rails/tasks/engine.rake"
5
+
6
+ load "rails/tasks/statistics.rake"
7
+
8
+ require "bundler/gem_tasks"
@@ -0,0 +1 @@
1
+ //= link_directory ../stylesheets/abizvn/media .css
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,6 @@
1
+ module Abizvn
2
+ module Media
3
+ class ApplicationController < ActionController::Base
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Abizvn
2
+ module Media
3
+ module ApplicationHelper
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Abizvn
2
+ module Media
3
+ class ApplicationJob < ActiveJob::Base
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,8 @@
1
+ module Abizvn
2
+ module Media
3
+ class ApplicationMailer < ActionMailer::Base
4
+ default from: "from@example.com"
5
+ layout "mailer"
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,35 @@
1
+ module Abizvn
2
+ module Media
3
+ class Album < ApplicationRecord
4
+ include Commonbase::RansackSearchable
5
+
6
+ self.table_name = 'media_albums'
7
+
8
+ validates :status, :title, presence: true
9
+
10
+ belongs_to :status, class_name: 'Abizvn::General::GeneralSetting'
11
+
12
+ has_many :album_images
13
+ has_many :images, through: :album_images
14
+ accepts_nested_attributes_for :images, allow_destroy: true
15
+
16
+ has_many :album_videos
17
+ has_many :videos, through: :album_videos
18
+ accepts_nested_attributes_for :videos, allow_destroy: true
19
+
20
+ def associate_images(image_ids)
21
+ associated_images_ids = self.album_images.pluck(:image_id)
22
+ image_ids.each do |id|
23
+ self.album_images.create(image_id: id) unless associated_images_ids.include?(id.to_i)
24
+ end
25
+ end
26
+
27
+ def associate_videos(video_ids)
28
+ associated_videos_ids = self.album_videos.pluck(:video_id)
29
+ video_ids.each do |id|
30
+ self.album_videos.create(video_id: id) unless associated_videos_ids.include?(id.to_i)
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,22 @@
1
+ module Abizvn
2
+ module Media
3
+ class AlbumImage < ApplicationRecord
4
+ include Commonbase::RansackSearchable
5
+
6
+ self.table_name = "media_albums_images"
7
+
8
+ after_initialize :default_values
9
+
10
+ belongs_to :album
11
+ belongs_to :image
12
+
13
+ private
14
+
15
+ def default_values
16
+ if self.new_record?
17
+ # Do something here
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ module Abizvn
2
+ module Media
3
+ class AlbumVideo < ApplicationRecord
4
+ include Commonbase::RansackSearchable
5
+
6
+ self.table_name = "media_albums_videos"
7
+
8
+ after_initialize :default_values
9
+
10
+ belongs_to :album
11
+ belongs_to :video
12
+
13
+ private
14
+
15
+ def default_values
16
+ if self.new_record?
17
+ # Do something here
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,7 @@
1
+ module Abizvn
2
+ module Media
3
+ class ApplicationRecord < ActiveRecord::Base
4
+ self.abstract_class = true
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,13 @@
1
+ module Abizvn
2
+ module Media
3
+ class Image < ApplicationRecord
4
+ include Commonbase::RansackSearchable
5
+
6
+ self.table_name = 'media_images'
7
+
8
+ has_one_attached :image
9
+
10
+ validates :image, attached: true, content_type: Abizvn::Media.allowed_image_types, size: { less_than: Abizvn::Media.max_image_size }
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ module Abizvn
2
+ module Media
3
+ class Video < ApplicationRecord
4
+ include Commonbase::RansackSearchable
5
+
6
+ self.table_name = 'media_videos'
7
+
8
+ has_one_attached :video
9
+
10
+ validates :video, attached: true, content_type: Abizvn::Media.allowed_video_types, size: { less_than: Abizvn::Media.max_video_size }
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Abizvn media</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+
8
+ <%= yield :head %>
9
+
10
+ <%= stylesheet_link_tag "abizvn/media/application", media: "all" %>
11
+ </head>
12
+ <body>
13
+
14
+ <%= yield %>
15
+
16
+ </body>
17
+ </html>
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ Abizvn::Media::Engine.routes.draw do
2
+ end
@@ -0,0 +1,10 @@
1
+ class CreateVideos < ActiveRecord::Migration[7.2]
2
+ def change
3
+ create_table :media_videos do |t|
4
+ t.string :description
5
+ t.string :link
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreateImages < ActiveRecord::Migration[7.2]
2
+ def change
3
+ create_table :media_images do |t|
4
+ t.string :description
5
+ t.string :link
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,22 @@
1
+ class CreateAlbums < ActiveRecord::Migration[7.2]
2
+ def change
3
+ create_table :media_albums do |t|
4
+ t.string :title, null: false, limit: 256
5
+ t.text :description, limit: 2048
6
+ t.references :status, foreign_key: { to_table: :general_settings }
7
+ t.timestamps
8
+ end
9
+
10
+ create_table :media_albums_images do |t|
11
+ t.references :album, foreign_key: { to_table: :media_albums }
12
+ t.references :image, foreign_key: { to_table: :media_images }
13
+ t.timestamps
14
+ end
15
+
16
+ create_table :media_albums_videos do |t|
17
+ t.references :album, foreign_key: { to_table: :media_albums }
18
+ t.references :video, foreign_key: { to_table: :media_videos }
19
+ t.timestamps
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,7 @@
1
+ module Abizvn
2
+ module Media
3
+ class Engine < ::Rails::Engine
4
+ isolate_namespace Abizvn::Media
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module Abizvn
2
+ module Media
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,24 @@
1
+ require "abizvn/media/version"
2
+ require "abizvn/media/engine"
3
+
4
+ module Abizvn
5
+ module Media
6
+ mattr_accessor :max_image_size, :max_video_size, :allowed_image_types, :allowed_video_types
7
+
8
+ def self.max_image_size
9
+ @@max_image_size || 5.megabytes
10
+ end
11
+
12
+ def self.max_video_size
13
+ @@max_video_size || 50.megabytes
14
+ end
15
+
16
+ def self.allowed_image_types
17
+ @@allowed_image_types || ['image/png', 'image/jpeg', 'image/gif']
18
+ end
19
+
20
+ def self.allowed_video_types
21
+ @@allowed_video_types || ['video/mp4', 'video/webm', 'video/mpeg', 'video/quicktime']
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :abizvn_media do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,196 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: abizvn-media
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Juan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-03-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '7.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '7.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: activestorage
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '7.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '7.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: active_storage_validations
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: abizvn-general
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.1.3
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.1.3
69
+ - !ruby/object:Gem::Dependency
70
+ name: commonbase
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.2'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: shoulda-matchers
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: factory_bot_rails
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: byebug
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: Images and videos management
140
+ email:
141
+ - juanonsoftware@gmail.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - MIT-LICENSE
147
+ - README.md
148
+ - Rakefile
149
+ - app/assets/config/abizvn_media_manifest.js
150
+ - app/assets/stylesheets/abizvn/media/application.css
151
+ - app/controllers/abizvn/media/application_controller.rb
152
+ - app/helpers/abizvn/media/application_helper.rb
153
+ - app/jobs/abizvn/media/application_job.rb
154
+ - app/mailers/abizvn/media/application_mailer.rb
155
+ - app/models/abizvn/media/album.rb
156
+ - app/models/abizvn/media/album_image.rb
157
+ - app/models/abizvn/media/album_video.rb
158
+ - app/models/abizvn/media/application_record.rb
159
+ - app/models/abizvn/media/image.rb
160
+ - app/models/abizvn/media/video.rb
161
+ - app/views/layouts/abizvn/media/application.html.erb
162
+ - config/routes.rb
163
+ - db/migrate/20250314024858_create_videos.rb
164
+ - db/migrate/20250314024859_create_images.rb
165
+ - db/migrate/20250314024860_create_albums.rb
166
+ - lib/abizvn/media.rb
167
+ - lib/abizvn/media/engine.rb
168
+ - lib/abizvn/media/version.rb
169
+ - lib/tasks/abizvn/media_tasks.rake
170
+ homepage: https://github.com/abizvncom/abizvn-media
171
+ licenses:
172
+ - MIT
173
+ metadata:
174
+ homepage_uri: https://github.com/abizvncom/abizvn-media
175
+ source_code_uri: https://github.com/abizvncom/abizvn-media
176
+ changelog_uri: https://github.com/abizvncom/abizvn-media
177
+ post_install_message:
178
+ rdoc_options: []
179
+ require_paths:
180
+ - lib
181
+ required_ruby_version: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: '0'
186
+ required_rubygems_version: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: '0'
191
+ requirements: []
192
+ rubygems_version: 3.4.19
193
+ signing_key:
194
+ specification_version: 4
195
+ summary: Abizvn::Media
196
+ test_files: []