mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-28 18:01:26 -06:00
78 lines
1.7 KiB
PHP
78 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* ImportJobRepositoryInterface.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Repositories\ImportJob;
|
|
|
|
use FireflyIII\Models\ImportJob;
|
|
use FireflyIII\User;
|
|
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
|
|
|
/**
|
|
* Interface ImportJobRepositoryInterface
|
|
*
|
|
* @package FireflyIII\Repositories\ImportJob
|
|
*/
|
|
interface ImportJobRepositoryInterface
|
|
{
|
|
/**
|
|
* @param string $fileType
|
|
*
|
|
* @return ImportJob
|
|
*/
|
|
public function create(string $fileType): ImportJob;
|
|
|
|
/**
|
|
* @param string $key
|
|
*
|
|
* @return ImportJob
|
|
*/
|
|
public function findByKey(string $key): ImportJob;
|
|
|
|
/**
|
|
* @param ImportJob $job
|
|
* @param UploadedFile $file
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function processConfiguration(ImportJob $job, UploadedFile $file): bool;
|
|
|
|
/**
|
|
* @param ImportJob $job
|
|
* @param UploadedFile $file
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function processFile(ImportJob $job, UploadedFile $file): bool;
|
|
|
|
/**
|
|
* @param ImportJob $job
|
|
* @param array $configuration
|
|
*
|
|
* @return ImportJob
|
|
*/
|
|
public function setConfiguration(ImportJob $job, array $configuration): ImportJob;
|
|
|
|
/**
|
|
* @param User $user
|
|
*/
|
|
public function setUser(User $user);
|
|
|
|
/**
|
|
* @param ImportJob $job
|
|
* @param string $status
|
|
*
|
|
* @return ImportJob
|
|
*/
|
|
public function updateStatus(ImportJob $job, string $status): ImportJob;
|
|
}
|