GDPR compliance for website

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Ensuring website compliance with GDPR requirements

GDPR (General Data Protection Regulation) is an EU regulation on personal data protection effective since 2018. Applies to any website processing data of EU citizens, regardless of server location. Penalties: up to €20 million or 4% of global revenue.

Six legal bases for personal data processing

  1. Consent — explicit, revocable, specific
  2. Contract — necessity for contract fulfillment
  3. Legal obligation — law requirements
  4. Vital interests — life protection
  5. Public task — government functions
  6. Legitimate interest — commercial interests (balance test)

Most commercial websites use consent and contract.

Technical measures (GDPR Art. 25 & 32)

Privacy by Design:

class UserRegistrationRequest extends FormRequest
{
    public function rules(): array
    {
        return [
            'email'    => 'required|email',
            'password' => 'required|min:8',
        ];
    }
}

class AnalyticsEventService
{
    public function track(User $user, string $event): void
    {
        AnalyticsEvent::create([
            'user_pseudonym' => hash('sha256', $user->id . config('app.analytics_salt')),
            'event'          => $event,
        ]);
    }
}

Data subject rights (GDPR Art. 15-22)

Right Response Time Implementation
Access (Art. 15) 1 month Export data in account
Correction (Art. 16) 1 month Edit profile
Deletion (Art. 17) 1 month Delete account button
Restriction (Art. 18) 1 month Processing freeze
Portability (Art. 20) 1 month JSON/CSV export
Objection (Art. 21) Without delay Newsletter unsubscribe
class GdprUserDeletionService
{
    public function deleteUser(User $user): void
    {
        DB::transaction(function () use ($user) {
            $user->update([
                'name'  => 'Deleted user',
                'email' => 'deleted_' . $user->id . '@deleted.invalid',
                'phone' => null,
            ]);

            $user->consents()->delete();
            $user->addresses()->delete();
            $user->tokens()->delete();
            $user->update(['deleted_at' => now(), 'anonymized_at' => now()]);
        });

        event(new UserDataDeleted($user->id));
    }
}

Data Processing Agreements (DPA)

Each data processor service must have DPA:

  • Sendgrid/Mailchimp — available online
  • Google Analytics — GA4 + DPA + IP anonymization
  • Stripe — built into Terms of Service
  • AWS/GCP/Azure — available in console

Data breach notification (Art. 33-34)

class DataBreachService
{
    public function notifySupervisoryAuthority(DataBreach $breach): void
    {
        BreachNotification::create([
            'breach_id'          => $breach->id,
            'notified_authority' => $this->getCompetentAuthority($breach),
            'notified_at'        => now(),
            'notification_ref'   => $this->submitToAuthority($breach),
        ]);
    }

    public function notifyDataSubjects(DataBreach $breach): void
    {
        if ($breach->risk_level === 'high') {
            $breach->affectedUsers()->each(function (User $user) use ($breach) {
                Mail::to($user)->queue(new DataBreachNotificationMail($breach));
            });
        }
    }
}

Implementation Timeline

  • Gap analysis of current state: 2–3 days
  • Technical measures (encryption, rights, cookie banner): 7–14 days
  • Documentation (ROPA, DPA, policies): 3–5 days
  • Testing deletion/export processes: 2–3 days
  • Total: 3–5 weeks for typical SaaS