░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/app/models/lti/content_migration_service
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: migrator.rb
# frozen_string_literal: true # # Copyright (C) 2016 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. module Lti module ContentMigrationService class Migrator FAILED_STATUS = "failed" JWT_LIFETIME = 30.seconds SUCCESSFUL_STATUS = "completed" JSON_FORMAT = "json" private_constant :FAILED_STATUS, :JWT_LIFETIME, :SUCCESSFUL_STATUS, :JSON_FORMAT private def expanded_variables return @expanded_variabled if @expanded_variables variable_expander = Lti::VariableExpander.new(root_account, @course, nil, tool: @tool) @expanded_variables = variable_expander.expand_variables!( @tool.set_custom_fields("content_migration") ) end def generate_jwt key = JSON::JWK.new({ k: @tool.shared_secret, kid: @tool.consumer_key, kty: "oct" }) Canvas::Security.create_jwt({}, JWT_LIFETIME.from_now, key) end def base_request_headers { "Authorization" => "Bearer #{generate_jwt}" } end def root_account @course.root_account end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 exporter.rb
RB
4.4 KB
2023-09-24 03:36
EDIT
📄 importer.rb
RB
4.1 KB
2023-09-24 03:36
EDIT
📄 migrator.rb
RB
1.7 KB
2023-09-24 03:36
EDIT