ข้ามไปยังเนื้อหา

รูปแบบเลเยอร์บริการใน XOOPS

2.5.x ✅ 4.0.x ✅

รูปแบบชั้นบริการสรุปตรรกะทางธุรกิจไว้ในคลาสบริการเฉพาะ โดยให้การแยกที่ชัดเจนระหว่างตัวควบคุมและชั้นการเข้าถึงข้อมูล รูปแบบนี้ส่งเสริมการนำโค้ดกลับมาใช้ใหม่ ความสามารถในการทดสอบ และการบำรุงรักษา

ชั้นบริการ:

  • มีตรรกะทางธุรกิจโดเมน
  • ประสานที่เก็บข้อมูลหลายแห่ง
  • จัดการกับการดำเนินงานที่ซับซ้อน
  • จัดการธุรกรรม
  • ดำเนินการตรวจสอบและการอนุญาต
  • ให้การดำเนินการระดับสูงแก่ผู้ควบคุม
  • ตรรกะทางธุรกิจที่สามารถนำกลับมาใช้ใหม่ได้ในคอนโทรลเลอร์หลายตัว
  • ง่ายต่อการทดสอบแบบแยกส่วน
  • การใช้กฎเกณฑ์ทางธุรกิจแบบรวมศูนย์
  • แยกประเด็นข้อกังวลให้ชัดเจน
  • รหัสคอนโทรลเลอร์แบบง่าย
<?php
// Service with injected dependencies
class UserService
{
private $userRepository;
private $emailService;
public function __construct(
UserRepositoryInterface $userRepository,
EmailServiceInterface $emailService
) {
$this->userRepository = $userRepository;
$this->emailService = $emailService;
}
public function registerUser($username, $email, $password)
{
// Validate
$this->validate($username, $email, $password);
// Create user
$user = new User();
$user->setUsername($username);
$user->setEmail($email);
$user->setPassword($password);
// Save
$userId = $this->userRepository->save($user);
// Send welcome email
$this->emailService->sendWelcome($email, $username);
return $userId;
}
private function validate($username, $email, $password)
{
$errors = [];
if (strlen($username) < 3) {
$errors['username'] = 'Username too short';
}
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$errors['email'] = 'Invalid email';
}
if (strlen($password) < 6) {
$errors['password'] = 'Password too short';
}
if (!empty($errors)) {
throw new ValidationException('Invalid input', $errors);
}
}
}
?>
<?php
class ServiceContainer
{
private $services = [];
public function __construct($db)
{
// Register repositories
$this->services['userRepository'] = new UserRepository($db);
// Register services
$this->services['userService'] = new UserService(
$this->services['userRepository']
);
}
public function get($name)
{
if (!isset($this->services[$name])) {
throw new \InvalidArgumentException("Service not found: $name");
}
return $this->services[$name];
}
}
?>
<?php
class UserController
{
private $userService;
public function __construct(ServiceContainer $container)
{
$this->userService = $container->get('userService');
}
public function registerAction()
{
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
return [];
}
try {
$userId = $this->userService->registerUser(
$_POST['username'],
$_POST['email'],
$_POST['password']
);
return [
'success' => true,
'userId' => $userId,
];
} catch (ValidationException $e) {
return [
'success' => false,
'errors' => $e->getErrors(),
];
}
}
}
?>
  • แต่ละบริการจัดการข้อกังวลด้านโดเมนเดียว
  • บริการขึ้นอยู่กับอินเทอร์เฟซ ไม่ใช่การใช้งาน
  • ใช้การฉีดคอนสตรัคเตอร์สำหรับการขึ้นต่อกัน
  • บริการควรทดสอบแยกกันได้
  • โยนข้อยกเว้นเฉพาะโดเมน
  • บริการไม่ควรขึ้นอยู่กับรายละเอียดคำขอ HTTP
  • รักษาบริการที่มุ่งเน้นและเหนียวแน่น

ดูเพิ่มเติมที่:


Tags: #ชั้นบริการ #ตรรกะทางธุรกิจ #การฉีดพึ่งพา #รูปแบบการออกแบบ