Files
sure/app/models/provider/lunchflow_adapter.rb
soky srm be0b20dfd9 Lunchflow settings family (#363)
* Move provider config to family

* remove global settings

* Remove turbo auto  submit

* Fix flash location

* Fix mssing syncer for lunchflow

* Update schema.rb

* FIX tests and encryption config

* FIX make rabbit happy

* FIX run migration in SQL

* FIX turbo frame modal

* Branding fixes

* FIX rabbit

* OCD with product names

* More OCD

* No other console.log|warn in codebase

---------

Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
2025-11-22 02:14:29 +01:00

79 lines
2.0 KiB
Ruby

class Provider::LunchflowAdapter < Provider::Base
include Provider::Syncable
include Provider::InstitutionMetadata
# Register this adapter with the factory
Provider::Factory.register("LunchflowAccount", self)
def provider_name
"lunchflow"
end
# Build a Lunch Flow provider instance with family-specific credentials
# Lunchflow is now fully per-family - no global credentials supported
# @param family [Family] The family to get credentials for (required)
# @return [Provider::Lunchflow, nil] Returns nil if API key is not configured
def self.build_provider(family: nil)
return nil unless family.present?
# Get family-specific credentials
lunchflow_item = family.lunchflow_items.where.not(api_key: nil).first
return nil unless lunchflow_item&.credentials_configured?
Provider::Lunchflow.new(
lunchflow_item.api_key,
base_url: lunchflow_item.effective_base_url
)
end
def sync_path
Rails.application.routes.url_helpers.sync_lunchflow_item_path(item)
end
def item
provider_account.lunchflow_item
end
def can_delete_holdings?
false
end
def institution_domain
# Lunch Flow may provide institution metadata in account data
metadata = provider_account.institution_metadata
return nil unless metadata.present?
domain = metadata["domain"]
url = metadata["url"]
# Derive domain from URL if missing
if domain.blank? && url.present?
begin
domain = URI.parse(url).host&.gsub(/^www\./, "")
rescue URI::InvalidURIError
Rails.logger.warn("Invalid institution URL for Lunch Flow account #{provider_account.id}: #{url}")
end
end
domain
end
def institution_name
metadata = provider_account.institution_metadata
return nil unless metadata.present?
metadata["name"] || item&.institution_name
end
def institution_url
metadata = provider_account.institution_metadata
return nil unless metadata.present?
metadata["url"] || item&.institution_url
end
def institution_color
item&.institution_color
end
end