Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FINNA-2767] Initial implementation of disec support for reservation lists #3091

Open
wants to merge 16 commits into
base: dev
Choose a base branch
from

Conversation

LuomaJuha
Copy link

@LuomaJuha LuomaJuha commented Nov 28, 2024

  • Connections handled with pluginmanagers: Database and disec
  • If order is placed to an external service and id is returned, saves it to database for later use
  • Adds a status checker in displayList action template
  • Adds a new column for finna_resource_list: external_id to store returned external ids
  • Updates the type of connection when order is placed to keep data synchronized

ALTER TABLE finna_resource_list ADD COLUMN external_id varchar(255) DEFAULT NULL;
ALTER TABLE finna_resource_list MODIFY connection varchar(40) NOT NULL DEFAULT 'feedbackform';

@LuomaJuha LuomaJuha requested a review from EreMaijala November 29, 2024 14:07
module/Finna/src/Finna/ReservationList/AbstractBase.php Outdated Show resolved Hide resolved
module/Finna/src/Finna/ReservationList/AbstractBase.php Outdated Show resolved Hide resolved
local/config/finna/ReservationList.yaml.sample Outdated Show resolved Hide resolved
module/Finna/src/Finna/ReservationList/AbstractBase.php Outdated Show resolved Hide resolved
module/Finna/src/Finna/AjaxHandler/ReservationList.php Outdated Show resolved Hide resolved
module/Finna/sql/mysql.sql Outdated Show resolved Hide resolved
@LuomaJuha LuomaJuha requested a review from EreMaijala December 5, 2024 14:16
Copy link

@EreMaijala EreMaijala left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Status-teksteistä vielä sen verran, että jos käyttäjän pitäisi niiden perusteella osata jotenkin toimia tai olla toimimatta, niin ei ole välttämättä mitenkään liian selkeä. Tarkoittaako esim. "processed", että aineisto on matkalla käyttäjälle, vai jotain muuta? Entä "Aineisto poistettu"?
  • Laita kaikkiin PHP version 8.1 => PHP version 8. Niin se on muuallakin.
  • Kaikki Connection:iin liittyvä pitäisi olla vielä omassa nimiavaruudessa, esim. Finna\ReservationList\Connection.

local/config/finna/ReservationList.yaml.sample Outdated Show resolved Hide resolved
# and is the default value, if omitted
# Connection holds information about type of lists:
# feedbackform: Default connection, orders handled with sending forms
# handler: email [Optional] Default handler email, other values found in FeedbackForms.yaml primary handlers

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Miten tämä suhteutuu FeedbackForms.yaml:n asetuksiin? Jos tähän laittaa vaikka api, niin mitä asetuksia se käyttää? Olisiko parempi jättää lähetystapa formin puolella määriteltäväksi niin, että lähetys feedbackforms:n kautta käyttää oikeasti lomaketta eikä vain handleria? Muussa tapauksessa olisi parempi irrottaa handlerit sieltä ReservationList:n connectioneiksi.

local/languages/finna/ReservationList/en-gb.ini Outdated Show resolved Hide resolved
local/languages/finna/ReservationList/en-gb.ini Outdated Show resolved Hide resolved
local/languages/finna/ReservationList/en-gb.ini Outdated Show resolved Hide resolved
'LibraryCardSources' => [],
'CheckResourceStatus' => false,
'Connection' => [
'type' => 'Database',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tämä on vielä vanha.

): void {
if (!$this->userCanEditList($user, $list)) {
throw new ListPermissionException('list_access_denied');
}
$list->setPickupDate(DateTime::createFromFormat('Y-m-d', $request->get('pickup_date')))->setOrdered();
$list->setPickupDate(DateTime::createFromFormat('Y-m-d', $newValues['pickup_date']))->setOrdered();
if ($externalId = $newValues['external_id'] ?? null) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Voisiko setExternalId ottaa null:n, kun getExternalId voi palauttaa sen? Silloin riittäisi $list->setExternalId($newValues['external_id'] ?? null); joka varmistaisi, ettei jää väärää arvoa. Vähän sama setConnection:n kohdalla, paitsi että pitäisi laittaa tyhjäksi tai oletukseksi, jos ei muuta ole.

'pickup_date' => $postRequest->get('pickup_date'),
'resourceIDs' => $postRequest->get('resourceIDs'),
];
if ($handler instanceof \Finna\ReservationList\FeedbackForm) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tämä ero kutsuissa pitää saada pois, nyt on aika sotkuinen.

'resourceIDs' => $postRequest->get('resourceIDs'),
];
if ($handler instanceof \Finna\ReservationList\FeedbackForm) {
$result = $handler->placeOrder($this->params(), $user, $form);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Miksi $this->params() eikä $postRequest?

$connectionType = $listProperties['Connection']['type'];
$handler = $this->getService(\Finna\ReservationList\PluginManager::class)->get($connectionType);
$handler->init($listProperties);
$gatheredPostValues = [

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tämän nimi voisi olla vaikka $listValues tms. kun siihen alempana lisätään muutakin kuin kerättyjä POST-kenttiä.

@LuomaJuha LuomaJuha requested a review from EreMaijala December 11, 2024 10:33
Copy link

@EreMaijala EreMaijala left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Juhan kanssa keskusteltu. Täytyy vielä muokata toimintatapaa, jotta saadaan tarvittaessa kaikille määriteltyä omat lähetystavat oikein ja selkeästi.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants