Upstream sync
This commit is contained in:
@@ -40,7 +40,16 @@ class Admin::CastingSubmissionsController < Admin::ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def casting_submission_params
|
def casting_submission_params
|
||||||
params.require(:casting_submission).permit(:casting_call_id, :performer_name, :interview_date, :zoom_meeting_url, :interview_recording)
|
params.require(:casting_submission).permit(
|
||||||
|
:casting_call_id, :performer_name, :interview_date,
|
||||||
|
:zoom_meeting_url, :interview_recording, :time_elapsed_1,
|
||||||
|
:time_elapsed_2, :time_elapsed_3, :time_elapsed_4, :time_elapsed_5,
|
||||||
|
:time_elapsed_6, :time_elapsed_7, :time_elapsed_8, :time_elapsed_9,
|
||||||
|
:time_elapsed_10, :time_elapsed_11, :time_elapsed_12, :time_elapsed_13,
|
||||||
|
:time_elapsed_14, :time_elapsed_15, :note_1 , :note_2 , :note_3 , :note_4,
|
||||||
|
:note_5, :note_6, :note_7, :note_8, :note_9, :note_10, :note_11, :note_12, :note_13,
|
||||||
|
:note_14, :note_15
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def casting_submissions
|
def casting_submissions
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ class CastingSubmissionsController < ApplicationController
|
|||||||
def show
|
def show
|
||||||
@casting_call = @casting_submission.casting_call
|
@casting_call = @casting_submission.casting_call
|
||||||
@files = @casting_submission.files.order("created_at DESC").paginate(page: params[:files_page])
|
@files = @casting_submission.files.order("created_at DESC").paginate(page: params[:files_page])
|
||||||
|
@markers = @casting_submission.markers
|
||||||
|
|
||||||
render layout: 'application'
|
render layout: 'application'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -3,37 +3,23 @@ class CastingSubmission < ApplicationRecord
|
|||||||
has_many_attached :files
|
has_many_attached :files
|
||||||
has_one_attached :interview_recording
|
has_one_attached :interview_recording
|
||||||
|
|
||||||
|
NUMBER_OF_MARKER_FIELDS = 15
|
||||||
|
|
||||||
has_secure_token
|
has_secure_token
|
||||||
|
|
||||||
validates :performer_name, presence: true
|
validates :performer_name, presence: true
|
||||||
validate :zoom_meeting_url_validation
|
|
||||||
|
|
||||||
scope :completed, -> { where.not(interviewed_at: nil) }
|
scope :completed, -> { where.not(interviewed_at: nil) }
|
||||||
|
|
||||||
def join_zoom_meeting_url
|
|
||||||
uri = URI.parse(self.zoom_meeting_url)
|
|
||||||
zoom_meeting_id = uri.path.gsub("/j/", "")
|
|
||||||
zoom_meeting_pwd = uri.query.gsub("pwd=", "")
|
|
||||||
|
|
||||||
"zoommtg://zoom.us/join?confno=#{zoom_meeting_id}&pwd=#{zoom_meeting_pwd}"
|
|
||||||
end
|
|
||||||
|
|
||||||
def zip_file_name
|
def zip_file_name
|
||||||
"#{self.casting_call.title.parameterize}_#{self.performer_name.parameterize}_#{Time.now.strftime('%Y-%m-%d_%H-%M-%S')}"
|
"#{self.casting_call.title.parameterize}_#{self.performer_name.parameterize}_#{Time.now.strftime('%Y-%m-%d_%H-%M-%S')}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def zoom_meeting_url_validation
|
def markers
|
||||||
# valid url format :
|
(1..NUMBER_OF_MARKER_FIELDS).map do |n|
|
||||||
# https://us01web.zoom.us/j/12345?pwd=Ab103odw3ok343ko
|
if public_send("time_elapsed_#{n}").present?
|
||||||
valid_url_regex = %r{^https\://[a-z0-9]+\.zoom.us/j/[0-9]+\?pwd\=.+}
|
OpenStruct.new(id: n, time_elapsed: public_send("time_elapsed_#{n}"), note: public_send("note_#{n}") )
|
||||||
return true if zoom_meeting_url.match valid_url_regex
|
end
|
||||||
|
end.compact
|
||||||
errors.add(:base, invalid_meeting_url_message)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def invalid_meeting_url_message
|
|
||||||
I18n.t('casting_submissions.validation_errors.invalid_meeting_url')
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<%= form.text_field :zoom_meeting_url %>
|
<%= form.text_field :zoom_meeting_url %>
|
||||||
|
|
||||||
<% unless casting_submission.new_record? %>
|
<% unless casting_submission.new_record? %>
|
||||||
<%= form.file_field :interview_recording, accept: "video/*", data: { direct_upload_url: rails_direct_uploads_url, aws_bucket: ENV['AWS_BUCKET'], aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'], signer_url: multipart_signatures_url } %>
|
<%= form.file_field :interview_recording, accept: "video/mp4", data: { direct_upload_url: rails_direct_uploads_url, aws_bucket: ENV['AWS_BUCKET'], aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'], signer_url: multipart_signatures_url } %>
|
||||||
|
|
||||||
<% if casting_submission.interview_recording.attached? %>
|
<% if casting_submission.interview_recording.attached? %>
|
||||||
<p>
|
<p>
|
||||||
@@ -17,8 +17,15 @@
|
|||||||
<span class="text-muted"><%= fa_icon "long-arrow-left" %> <em>Current interview recording</em></span>
|
<span class="text-muted"><%= fa_icon "long-arrow-left" %> <em>Current interview recording</em></span>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<hr>
|
||||||
|
<%= card_field_set_tag t(".casting_submission_markers.heading") do %>
|
||||||
|
<% (1..CastingSubmission::NUMBER_OF_MARKER_FIELDS).each do |n| %>
|
||||||
|
<div class="form-row">
|
||||||
|
<%= form.number_field "time_elapsed_#{n}", wrapper_class: "col-md-6", label: "Elapsed Time #{n} (in seconds)" %>
|
||||||
|
<%= form.text_area "note_#{n}", wrapper_class: "col-md-6", label: "Note #{n}" %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class="row align-items-center text-center mt-4">
|
<div class="row align-items-center text-center mt-4">
|
||||||
|
|||||||
@@ -22,14 +22,27 @@
|
|||||||
<%= render partial: 'casting_submissions/video', locals: { casting_submission: @casting_submission } %>
|
<%= render partial: 'casting_submissions/video', locals: { casting_submission: @casting_submission } %>
|
||||||
<% if @casting_submission.interview_recording.present? %>
|
<% if @casting_submission.interview_recording.present? %>
|
||||||
<%= javascript_tag nonce: true do %>
|
<%= javascript_tag nonce: true do %>
|
||||||
new Clappr.Player({
|
var markerData = <%= raw @markers.to_json %>;
|
||||||
parentId: '#casting_submission_video',
|
|
||||||
source: "<%= rails_blob_url(@casting_submission.interview_recording, host: AppHost.new.domain_with_port) %>",
|
var player = new Clappr.Player({
|
||||||
width: '100%',
|
parentId: '#casting_submission_video',
|
||||||
height: '100%',
|
source: "<%= rails_blob_url(@casting_submission.interview_recording, host: AppHost.new.domain_with_port) %>",
|
||||||
mute: true,
|
plugins: {
|
||||||
autoPlay: true,
|
core: [ClapprMarkersPlugin]
|
||||||
hlsMinimumDvrSize: 1
|
},
|
||||||
|
markersPlugin: {},
|
||||||
|
width: '100%',
|
||||||
|
height: '100%',
|
||||||
|
mute: true,
|
||||||
|
autoPlay: true,
|
||||||
|
hlsMinimumDvrSize: 1
|
||||||
|
});
|
||||||
|
|
||||||
|
markerData.forEach(function(marker, index) {
|
||||||
|
var markers = player.getPlugin("markers-plugin");
|
||||||
|
var marker = new ClapprMarkersPlugin.StandardMarker(Number(marker.table.time_elapsed), marker.table.note)
|
||||||
|
|
||||||
|
markers.addMarker(marker);
|
||||||
});
|
});
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row align-items-center justify-content-center mt-3">
|
<div class="row align-items-center justify-content-center mt-3">
|
||||||
<%= link_to "Start Interview", @casting_submission.join_zoom_meeting_url, target: "_blank", class: "btn btn-primary" %>
|
<%= link_to "Start Interview", @casting_submission.zoom_meeting_url, target: "_blank", class: "btn btn-primary" %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -105,6 +105,9 @@ en:
|
|||||||
notice: The casting submission has been completed
|
notice: The casting submission has been completed
|
||||||
create:
|
create:
|
||||||
notice: The casting submission has been created
|
notice: The casting submission has been created
|
||||||
|
form:
|
||||||
|
casting_submission_markers:
|
||||||
|
heading: Markers
|
||||||
index:
|
index:
|
||||||
actions:
|
actions:
|
||||||
new: Create Casting Submission
|
new: Create Casting Submission
|
||||||
@@ -283,13 +286,6 @@ en:
|
|||||||
empty: Casting Submission results will appear here.
|
empty: Casting Submission results will appear here.
|
||||||
show:
|
show:
|
||||||
empty: Casting Submission files and recorded meeetings will appear here.
|
empty: Casting Submission files and recorded meeetings will appear here.
|
||||||
casting_submissions:
|
|
||||||
index:
|
|
||||||
empty: Casting Submission results will appear here.
|
|
||||||
show:
|
|
||||||
empty: Casting Submission files and recorded meeetings will appear here.
|
|
||||||
validation_errors:
|
|
||||||
invalid_meeting_url: Zoom Meeting URL is invalid
|
|
||||||
contract_downloads:
|
contract_downloads:
|
||||||
download:
|
download:
|
||||||
failure: Your download could not be generated.
|
failure: Your download could not be generated.
|
||||||
|
|||||||
@@ -76,9 +76,6 @@ es:
|
|||||||
share_stream: Share live stream link with clients
|
share_stream: Share live stream link with clients
|
||||||
stream_from_mobile_app: Stream from ME Suite Mobile app, or via a professional camera
|
stream_from_mobile_app: Stream from ME Suite Mobile app, or via a professional camera
|
||||||
stream_multiple_cameras: Stream multiple cameras at one time
|
stream_multiple_cameras: Stream multiple cameras at one time
|
||||||
casting_submissions:
|
|
||||||
validation_errors:
|
|
||||||
invalid_meeting_url: Zoom Meeting URL is invalid (ES)
|
|
||||||
contract_templates:
|
contract_templates:
|
||||||
blank_contracts:
|
blank_contracts:
|
||||||
create:
|
create:
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
class AddMarkersToCastingSubmissions < ActiveRecord::Migration[6.0]
|
||||||
|
def change
|
||||||
|
add_column :casting_submissions, :time_elapsed_1, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_2, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_3, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_4, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_5, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_6, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_7, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_8, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_9, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_10, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_11, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_12, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_13, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_14, :integer
|
||||||
|
add_column :casting_submissions, :time_elapsed_15, :integer
|
||||||
|
|
||||||
|
add_column :casting_submissions, :note_1, :text
|
||||||
|
add_column :casting_submissions, :note_2, :text
|
||||||
|
add_column :casting_submissions, :note_3, :text
|
||||||
|
add_column :casting_submissions, :note_4, :text
|
||||||
|
add_column :casting_submissions, :note_5, :text
|
||||||
|
add_column :casting_submissions, :note_6, :text
|
||||||
|
add_column :casting_submissions, :note_7, :text
|
||||||
|
add_column :casting_submissions, :note_8, :text
|
||||||
|
add_column :casting_submissions, :note_9, :text
|
||||||
|
add_column :casting_submissions, :note_10, :text
|
||||||
|
add_column :casting_submissions, :note_11, :text
|
||||||
|
add_column :casting_submissions, :note_12, :text
|
||||||
|
add_column :casting_submissions, :note_13, :text
|
||||||
|
add_column :casting_submissions, :note_14, :text
|
||||||
|
add_column :casting_submissions, :note_15, :text
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -622,7 +622,37 @@ CREATE TABLE public.casting_submissions (
|
|||||||
created_at timestamp(6) without time zone NOT NULL,
|
created_at timestamp(6) without time zone NOT NULL,
|
||||||
updated_at timestamp(6) without time zone NOT NULL,
|
updated_at timestamp(6) without time zone NOT NULL,
|
||||||
token character varying,
|
token character varying,
|
||||||
interviewed_at timestamp without time zone
|
interviewed_at timestamp without time zone,
|
||||||
|
time_elapsed_1 integer,
|
||||||
|
time_elapsed_2 integer,
|
||||||
|
time_elapsed_3 integer,
|
||||||
|
time_elapsed_4 integer,
|
||||||
|
time_elapsed_5 integer,
|
||||||
|
time_elapsed_6 integer,
|
||||||
|
time_elapsed_7 integer,
|
||||||
|
time_elapsed_8 integer,
|
||||||
|
time_elapsed_9 integer,
|
||||||
|
time_elapsed_10 integer,
|
||||||
|
time_elapsed_11 integer,
|
||||||
|
time_elapsed_12 integer,
|
||||||
|
time_elapsed_13 integer,
|
||||||
|
time_elapsed_14 integer,
|
||||||
|
time_elapsed_15 integer,
|
||||||
|
note_1 text,
|
||||||
|
note_2 text,
|
||||||
|
note_3 text,
|
||||||
|
note_4 text,
|
||||||
|
note_5 text,
|
||||||
|
note_6 text,
|
||||||
|
note_7 text,
|
||||||
|
note_8 text,
|
||||||
|
note_9 text,
|
||||||
|
note_10 text,
|
||||||
|
note_11 text,
|
||||||
|
note_12 text,
|
||||||
|
note_13 text,
|
||||||
|
note_14 text,
|
||||||
|
note_15 text
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
@@ -4078,6 +4108,7 @@ INSERT INTO "schema_migrations" (version) VALUES
|
|||||||
('20200706193123'),
|
('20200706193123'),
|
||||||
('20200706230803'),
|
('20200706230803'),
|
||||||
('20200707070522'),
|
('20200707070522'),
|
||||||
('20200714175331');
|
('20200714175331'),
|
||||||
|
('20200722193459');
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -37,16 +37,6 @@ RSpec.describe Admin::CastingSubmissionsController, type: :controller do
|
|||||||
post :create, params: { casting_submission: casting_submission_params }
|
post :create, params: { casting_submission: casting_submission_params }
|
||||||
}.to change(CastingSubmission, :count)
|
}.to change(CastingSubmission, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "does not create new record if zoom meeting url is not valid" do
|
|
||||||
expect {
|
|
||||||
post :create, params: {
|
|
||||||
casting_submission: casting_submission_params
|
|
||||||
.except(:zoom_meeting_url)
|
|
||||||
.merge(zoom_meeting_url: "malformed_url")
|
|
||||||
}
|
|
||||||
}.to change(CastingSubmission, :count).by(0)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "#edit" do
|
describe "#edit" do
|
||||||
|
|||||||
@@ -8,37 +8,6 @@ feature "Admin managing casting submissions" do
|
|||||||
sign_in current_user
|
sign_in current_user
|
||||||
end
|
end
|
||||||
|
|
||||||
scenario "admin cannot create casting submission with invalid zoom url", js: true do
|
|
||||||
visit admin_casting_submissions_path
|
|
||||||
cc = create(:casting_call, title: "SpecialCastingCall")
|
|
||||||
|
|
||||||
click_link create_casting_submission_button
|
|
||||||
expect(page).to have_content new_casting_submission_heading
|
|
||||||
|
|
||||||
fill_in performer_name_field, with: "TestName"
|
|
||||||
select cc.title, from: casting_call_field
|
|
||||||
fill_in zoom_meeting_url_field, with: "malformed url"
|
|
||||||
|
|
||||||
expect do
|
|
||||||
click_on submit_casting_submission_form
|
|
||||||
end.to change(CastingSubmission, :count).by(0)
|
|
||||||
expect(page).to have_content zoom_meeting_url_invalid_error
|
|
||||||
|
|
||||||
fill_in zoom_meeting_url_field, with: "https://similar.google.com/j/24324324?pwd=334kni3j4"
|
|
||||||
|
|
||||||
expect do
|
|
||||||
click_on submit_casting_submission_form
|
|
||||||
end.to change(CastingSubmission, :count).by(0)
|
|
||||||
expect(page).to have_content zoom_meeting_url_invalid_error
|
|
||||||
|
|
||||||
fill_in zoom_meeting_url_field, with: "https://s01.zoom.us/j/343434?pwd=dawidj34ijij"
|
|
||||||
|
|
||||||
expect do
|
|
||||||
click_on submit_casting_submission_form
|
|
||||||
end.to change(CastingSubmission, :count).by(1)
|
|
||||||
expect(page).to have_content create_casting_submission_button
|
|
||||||
end
|
|
||||||
|
|
||||||
scenario "when creating new casting call interview - interview recording field is not visible" do
|
scenario "when creating new casting call interview - interview recording field is not visible" do
|
||||||
visit admin_casting_submissions_path
|
visit admin_casting_submissions_path
|
||||||
|
|
||||||
@@ -78,6 +47,20 @@ feature "Admin managing casting submissions" do
|
|||||||
expect(page).to have_link CastingSubmission.last.interview_recording.attachment.blob.filename.to_s
|
expect(page).to have_link CastingSubmission.last.interview_recording.attachment.blob.filename.to_s
|
||||||
end
|
end
|
||||||
|
|
||||||
|
scenario "when admin opens view page for casting submission, it does not fail if zoom meeting URL is invalid" do
|
||||||
|
cc = create(:casting_call)
|
||||||
|
cci = create(:casting_submission, casting_call: cc, zoom_meeting_url: "anything")
|
||||||
|
|
||||||
|
visit admin_casting_submissions_path
|
||||||
|
|
||||||
|
click_on manage_button
|
||||||
|
click_link view_link
|
||||||
|
|
||||||
|
expect(page).to have_content casting_submission_details_header
|
||||||
|
expect(page).to have_content interview_files_label
|
||||||
|
expect(page).to have_content cci.performer_name
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def create_casting_submission_button
|
def create_casting_submission_button
|
||||||
@@ -127,4 +110,20 @@ feature "Admin managing casting submissions" do
|
|||||||
def current_interview_recording_label
|
def current_interview_recording_label
|
||||||
'Current interview recording'
|
'Current interview recording'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def manage_button
|
||||||
|
'Manage'
|
||||||
|
end
|
||||||
|
|
||||||
|
def view_link
|
||||||
|
'View'
|
||||||
|
end
|
||||||
|
|
||||||
|
def casting_submission_details_header
|
||||||
|
'Casting submission details'
|
||||||
|
end
|
||||||
|
|
||||||
|
def interview_files_label
|
||||||
|
'INTERVIEW FILES:'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user