Download the PHP package teltek/pumukit-blackboard-bundle without Composer

On this page you can find all versions of the php package teltek/pumukit-blackboard-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package pumukit-blackboard-bundle

BlackboardBundle

This bundle downloads recordings saved on Blackboard Collaborate from Blackboard Learn and imports them into PuMuKIT.

Configuration

Add the following to your PuMuKIT configuration:

How it works

The import process is split into three independent commands. Each command only does one job, stores its state in MongoDB and can be safely re-run at any time.

Course statuses (BlackboardCourse document)

Value Constant Meaning
0 STATUS_PENDING_RECORDINGS Course is queued to have its recordings fetched
1 STATUS_PENDING_IMPORT Recordings found and saved, waiting to be imported
2 STATUS_DONE No recordings found (or all processed)
3 STATUS_ERROR An error occurred; check errorMessage field

Commands

Step 1 — Sync courses

Fetches the full course catalogue from Blackboard Learn (sorted by modified descending) and persists it in MongoDB. Safe to re-run: new courses are inserted as pending_recordings; existing ones update their metadata without losing their current status, except done courses which are re-queued to check for new recordings.


Step 2 — Sync recordings

Processes courses in pending_recordings status. For each course it queries Blackboard Collaborate, saves the found recordings in PuMuKIT and transitions the course to pending_import (recordings found) or done (no recordings). If a request fails the course is marked as error and the next one is processed.

Option Default Description
--limit 50 Maximum number of courses to process per run

Step 3 — Import recordings

Downloads and ingests into PuMuKIT all recordings with imported=false. Requires the recording to have at least one owner with a matching PuMuKIT user account.

Option Description
--fallback-full-download If streaming download fails, retry loading the full file into memory

Recommended cron schedule

Note: Adjust --limit in Step 2 based on the Blackboard Collaborate API rate limits of your institution. Start conservatively (50–100) and increase if no blocking occurs.


All versions of pumukit-blackboard-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
pumukit/pumukit Version ^5.0
symfony/http-client Version ^5.0
firebase/php-jwt Version ^6.10
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package teltek/pumukit-blackboard-bundle contains the following files

Loading the files please wait ...