2023-12-18 15:05:15 +01:00
< ? php
/**
* Invoice Ninja ( https :// invoiceninja . com ) .
*
* @ link https :// github . com / invoiceninja / invoiceninja source repository
*
* @ copyright Copyright ( c ) 2023. Invoice Ninja LLC ( https :// invoiceninja . com )
*
* @ license https :// www . elastic . co / licensing / elastic - license
*/
namespace App\Services\IngresEmail ;
use App\Events\Expense\ExpenseWasCreated ;
use App\Factory\ExpenseFactory ;
use App\Libraries\MultiDB ;
use App\Models\Company ;
use App\Models\Vendor ;
use App\Models\VendorContact ;
use App\Services\IngresEmail\IngresEmail ;
use App\Utils\Ninja ;
use App\Utils\TempFile ;
use App\Utils\Traits\GeneratesCounter ;
use App\Utils\Traits\SavesDocuments ;
use App\Utils\Traits\MakesHash ;
2023-12-18 17:21:15 +01:00
use Cache ;
2023-12-18 15:05:15 +01:00
use Illuminate\Queue\SerializesModels ;
2024-03-18 08:04:54 +01:00
class IngresEmailEngine
2023-12-18 15:05:15 +01:00
{
2024-03-18 08:04:54 +01:00
use SerializesModels , MakesHash ;
2023-12-18 15:05:15 +01:00
use GeneratesCounter , SavesDocuments ;
private ? Company $company ;
2023-12-18 17:21:15 +01:00
private ? bool $isUnknownRecipent = null ;
2023-12-18 15:05:15 +01:00
private array $globalBlacklist = [];
2024-03-18 08:04:54 +01:00
public function __construct ( private IngresEmail $email )
2023-12-18 15:05:15 +01:00
{
}
/**
2023-12-19 08:51:50 +01:00
* if there is not a company with an matching mailbox , we only do monitoring
2023-12-18 17:21:15 +01:00
* reuse this method to add more mail - parsing behaviors
2023-12-18 15:05:15 +01:00
*/
public function handle ()
{
2023-12-18 17:21:15 +01:00
if ( $this -> isInvalidOrBlocked ())
return ;
2024-03-18 08:04:54 +01:00
2023-12-18 17:21:15 +01:00
$this -> isUnknownRecipent = true ;
2023-12-18 15:05:15 +01:00
// Expense Mailbox => will create an expense
2024-03-18 08:04:54 +01:00
$this -> company = MultiDB :: findAndSetDbByExpenseMailbox ( $this -> email -> to );
if ( $this -> company ) {
2023-12-18 17:21:15 +01:00
$this -> isUnknownRecipent = false ;
2023-12-18 15:05:15 +01:00
$this -> createExpense ();
}
2023-12-18 17:21:15 +01:00
$this -> saveMeta ();
2023-12-18 15:05:15 +01:00
}
2023-12-18 17:21:15 +01:00
// SPAM Protection
private function isInvalidOrBlocked ()
{
// invalid email
if ( ! filter_var ( $this -> email -> from , FILTER_VALIDATE_EMAIL )) {
nlog ( '[IngressMailEngine] E-Mail blocked, because from e-mail has the wrong format: ' . $this -> email -> from );
return true ;
}
$parts = explode ( '@' , $this -> email -> from );
$domain = array_pop ( $parts );
// global blacklist
if ( in_array ( $domain , $this -> globalBlacklist )) {
nlog ( '[IngressMailEngine] E-Mail blocked, because the domain was found on globalBlocklist: ' . $this -> email -> from );
return true ;
}
if ( Cache :: has ( 'ingresEmailBlockedSender:' . $this -> email -> from )) { // was marked as blocked before, so we block without any console output
return true ;
}
// sender occured in more than 500 emails in the last 12 hours
$senderMailCountTotal = Cache :: get ( 'ingresEmailSender:' . $this -> email -> from , 0 );
if ( $senderMailCountTotal >= 5000 ) {
nlog ( '[IngressMailEngine] E-Mail blocked permanent, because the sender sended more than ' . $senderMailCountTotal . ' emails in the last 12 hours: ' . $this -> email -> from );
$this -> blockSender ();
return true ;
}
if ( $senderMailCountTotal >= 1000 ) {
nlog ( '[IngressMailEngine] E-Mail blocked, because the sender sended more than ' . $senderMailCountTotal . ' emails in the last 12 hours: ' . $this -> email -> from );
$this -> saveMeta ();
return true ;
}
// sender sended more than 50 emails to the wrong mailbox in the last 6 hours
$senderMailCountUnknownRecipent = Cache :: get ( 'ingresEmailSenderUnknownRecipent:' . $this -> email -> from , 0 );
if ( $senderMailCountUnknownRecipent >= 50 ) {
nlog ( '[IngressMailEngine] E-Mail blocked, because the sender sended more than ' . $senderMailCountUnknownRecipent . ' emails to the wrong mailbox in the last 6 hours: ' . $this -> email -> from );
$this -> saveMeta ();
return true ;
}
// wrong recipent occurs in more than 100 emails in the last 12 hours, so the processing is blocked
2024-03-18 08:04:54 +01:00
$mailCountUnknownRecipent = Cache :: get ( 'ingresEmailUnknownRecipent:' . $this -> email -> to , 0 ); // @turbo124 maybe use many to save resources in case of spam with multiple to addresses each time
if ( $mailCountUnknownRecipent >= 100 ) {
nlog ( '[IngressMailEngine] E-Mail blocked, because anyone sended more than ' . $mailCountUnknownRecipent . ' emails to the wrong mailbox in the last 12 hours. Current sender was blocked as well: ' . $this -> email -> from );
$this -> blockSender ();
return true ;
2023-12-18 17:21:15 +01:00
}
return false ;
}
private function blockSender ()
{
Cache :: add ( 'ingresEmailBlockedSender:' . $this -> email -> from , true , now () -> addHours ( 12 ));
$this -> saveMeta ();
2023-12-18 17:24:59 +01:00
// TODO: ignore, when known sender (for heavy email-usage mostly on isHosted())
2023-12-18 17:21:15 +01:00
// TODO: handle external blocking
}
private function saveMeta ()
{
// save cache
Cache :: add ( 'ingresEmailSender:' . $this -> email -> from , 0 , now () -> addHours ( 12 ));
Cache :: increment ( 'ingresEmailSender:' . $this -> email -> from );
if ( $this -> isUnknownRecipent ) {
Cache :: add ( 'ingresEmailSenderUnknownRecipent:' . $this -> email -> from , 0 , now () -> addHours ( 6 ));
Cache :: increment ( 'ingresEmailSenderUnknownRecipent:' . $this -> email -> from ); // we save the sender, to may block him
2024-03-18 08:04:54 +01:00
Cache :: add ( 'ingresEmailUnknownRecipent:' . $this -> email -> to , 0 , now () -> addHours ( 12 ));
Cache :: increment ( 'ingresEmailUnknownRecipent:' . $this -> email -> to ); // we save the sender, to may block him
2023-12-18 17:21:15 +01:00
}
}
2023-12-18 17:24:59 +01:00
// MAIL-PARSING
2023-12-18 15:05:15 +01:00
private function processHtmlBodyToDocument ()
{
if ( ! $this -> email -> body_document && property_exists ( $this -> email , " body " )) {
$this -> email -> body_document = TempFile :: UploadedFileFromRaw ( $this -> email -> body , " E-Mail.html " , " text/html " );
}
}
2023-12-18 17:24:59 +01:00
// MAIN-PROCESSORS
protected function createExpense ()
{
2023-12-19 08:51:50 +01:00
// Skipping executions: will not result in not saving Metadata to prevent usage of these conditions, to spam
if ( ! $this -> validateExpenseShouldProcess ()) {
nlog ( 'email parsing not active for this company: ' . $this -> company -> id . ' from: ' . $this -> email -> from );
return ;
}
2023-12-18 17:24:59 +01:00
if ( ! $this -> validateExpenseSender ()) {
nlog ( 'invalid sender of an ingest email to company: ' . $this -> company -> id . ' from: ' . $this -> email -> from );
return ;
}
2023-12-19 08:51:50 +01:00
if ( sizeOf ( $this -> email -> documents ) == 0 ) {
nlog ( 'email does not contain any attachments and is likly not an expense. company: ' . $this -> company -> id . ' from: ' . $this -> email -> from );
return ;
}
2023-12-18 17:24:59 +01:00
2023-12-19 08:51:50 +01:00
// create expense
2023-12-18 17:24:59 +01:00
$expense = ExpenseFactory :: create ( $this -> company -> id , $this -> company -> owner () -> id );
$expense -> public_notes = $this -> email -> subject ;
$expense -> private_notes = $this -> email -> text_body ;
$expense -> date = $this -> email -> date ;
// handle vendor assignment
$expense_vendor = $this -> getExpenseVendor ();
if ( $expense_vendor )
$expense -> vendor_id = $expense_vendor -> id ;
// handle documents
$this -> processHtmlBodyToDocument ();
$documents = [];
array_push ( $documents , ... $this -> email -> documents );
if ( $this -> email -> body_document )
$documents [] = $this -> email -> body_document ;
$this -> saveDocuments ( $documents , $expense );
$expense -> saveQuietly ();
2023-12-19 08:51:50 +01:00
event ( new ExpenseWasCreated ( $expense , $expense -> company , Ninja :: eventVars ( null ))); // @turbo124 please check, I copied from API-Controller
event ( 'eloquent.created: App\Models\Expense' , $expense ); // @turbo124 please check, I copied from API-Controller
2023-12-18 17:24:59 +01:00
}
2023-12-18 17:21:15 +01:00
// HELPERS
2023-12-18 17:24:59 +01:00
private function validateExpenseShouldProcess ()
2023-12-18 15:05:15 +01:00
{
return $this -> company ? -> expense_mailbox_active ? : false ;
}
private function validateExpenseSender ()
{
$parts = explode ( '@' , $this -> email -> from );
$domain = array_pop ( $parts );
// whitelists
$email_whitelist = explode ( " , " , $this -> company -> expense_mailbox_whitelist_emails );
if ( in_array ( $this -> email -> from , $email_whitelist ))
return true ;
$domain_whitelist = explode ( " , " , $this -> company -> expense_mailbox_whitelist_domains );
if ( in_array ( $domain , $domain_whitelist ))
return true ;
if ( $this -> company -> expense_mailbox_allow_unknown && sizeOf ( $email_whitelist ) == 0 && sizeOf ( $domain_whitelist ) == 0 ) // from unknown only, when no whitelists are defined
return true ;
// own users
if ( $this -> company -> expense_mailbox_allow_company_users && $this -> company -> users () -> where ( " email " , $this -> email -> from ) -> exists ())
return true ;
// from clients/vendors (if active)
if ( $this -> company -> expense_mailbox_allow_vendors && $this -> company -> vendors () -> where ( " invoicing_email " , $this -> email -> from ) -> orWhere ( $this -> email -> from , 'LIKE' , " CONCAT('%',invoicing_domain) " ) -> exists ())
return true ;
if ( $this -> company -> expense_mailbox_allow_vendors && $this -> company -> vendors () -> contacts () -> where ( " email " , $this -> email -> from ) -> exists ()) // TODO
return true ;
// denie
return false ;
}
private function getExpenseVendor ()
{
$vendor = Vendor :: where ( " company_id " , $this -> company -> id ) -> where ( 'invoicing_email' , $this -> email -> from ) -> first ();
if ( $vendor == null )
$vendor = Vendor :: where ( " company_id " , $this -> company -> id ) -> where ( $this -> email -> from , 'LIKE' , " CONCAT('%',invoicing_domain) " ) -> first ();
if ( $vendor == null ) {
$vendorContact = VendorContact :: where ( " company_id " , $this -> company -> id ) -> where ( " email " , $this -> email -> from ) -> first ();
$vendor = $vendorContact -> vendor ();
}
// TODO: from contacts
return $vendor ;
}
}