نشر المحتوى
عشرة أقسام قابلة للكتابة — المنشورات، الفعاليات، المدونات، الألبومات، المجموعات، الاستشاريون، المشاريع، المشاريع ٢، الأوسمة والمهام — بالإضافة للتعليقات والإعجابات فوقها.
ts
await gurb.tweets.create({ content: 'أهلاً بالجميع 👋' })
await gurb.events.create({ title: 'Meetup', titleArabic: 'لقاء', startDate: iso, endDate: iso })
await gurb.blogs.create({ title: 'Welcome', contentHtml: '<p>…</p>', status: 'PUBLISHED' })
await gurb.groups.create({ name: 'القراءة', description: 'نادٍ', isPrivate: false, iconUrl })
await gurb.tasks.create({ headingId: 'h1', title: 'راجع الطلبات' })
await gurb.comments.create('tweets', 't1', { content: 'شكراً' })
await gurb.likes.like('tweets', 't1')php
$gurb->tweets->create('أهلاً بالجميع 👋');
$gurb->groups->create('القراءة', 'نادٍ', isPrivate: false, iconUrl: $iconUrl);
$gurb->tasks->create(headingId: 'h1', title: 'راجع الطلبات');
$gurb->comments->create(CommentParent::Tweets, 't1', 'شكراً');
$gurb->likes->like(LikeParent::Tweets, 't1');معاملات الإدخال
| الحقل | إلزامي | النوع | القيود |
|---|---|---|---|
| content | نعم | string | — |
| groupId | اختياري | string | Post into a group instead of the home feed. Checked against that group's own rules. |
| allowComments | اختياري | boolean | — |
| الحقل | إلزامي | النوع | القيود |
|---|---|---|---|
| title | نعم | string | — |
| titleArabic | نعم | string | Required. Community-internal pages are Arabic-only by design. |
| description | اختياري | string | — |
| status | اختياري | EventStatus | — |
| startDate | نعم | string | ISO 8601. Sent as a string; the server parses it. |
| endDate | نعم | string | — |
| location | اختياري | string | — |
| isOnline | اختياري | boolean | — |
| meetingUrl | اختياري | string | — |
| registrationUrl | اختياري | string | — |
| timezone | اختياري | string | — |
| capacity | اختياري | number | — |
| allowComments | اختياري | boolean | — |
| tags | اختياري | string[] | — |
| الحقل | إلزامي | النوع | القيود |
|---|---|---|---|
| title | نعم | string | — |
| contentHtml | نعم | string | Rendered HTML. The platform stores it as sent. |
| status | اختياري | "DRAFT" | "PUBLISHED" | "ARCHIVED" | `DRAFT` publishes nothing and announces nothing. |
| allowComments | اختياري | boolean | — |
| الحقل | إلزامي | النوع | القيود |
|---|---|---|---|
| name | نعم | string | — |
| nameArabic | اختياري | string | Defaults to `name`. The column is NOT NULL and Gurb's UI is Arabic-first. |
| description | نعم | string | — |
| descriptionArabic | اختياري | string | Defaults to `description`, same reason as `nameArabic`. |
| isPrivate | نعم | boolean | Required, deliberately. Defaulting a VISIBILITY field is how a private group gets published by accident. |
| memberLimit | اختياري | number | The member CAP. `-1` is unlimited and is the default; otherwise positive. |
| canChat | اختياري | boolean | Defaults to true. |
| اختياري | string | — | |
| website | اختياري | string | — |
| iconUrl | نعم | string | Required http(s) URL — see above. |
| coverUrl | اختياري | string | — |
| الحقل | إلزامي | النوع | القيود |
|---|---|---|---|
| headingId | نعم | string | — |
| title | نعم | string | Max 40 characters. Surprisingly short, and not a typo. |
| shortDescription | اختياري | string | Max 150. |
| description | اختياري | string | Max 400. |
| dueAt | اختياري | string | ISO 8601. |
| priority | اختياري | "HIGH" | "MEDIUM" | "LOW" | Defaults to `MEDIUM`. |
| points | اختياري | number | A non-negative integer — it feeds the member leaderboard. |
| estimatedMinutes | اختياري | number | — |
| tags | اختياري | string[] | — |
| autoAssignNewMembers | اختياري | boolean | Future joiners only; suppressed inside a SPECIFIC_MEMBERS section. |
| الحقل | إلزامي | النوع | القيود |
|---|---|---|---|
| content | نعم | string | 1–800 characters after trimming. |
| parentCommentId | اختياري | string | Must be a comment on the SAME parent. Omit for a top-level comment. |
الرفع غير مدعوم بعد
هذه المسارات نصية وJSON فقط. الألبوم يُنشأ فارغاً، والمنشور بلا مرفق، وأيقونة المجموعة رابط لا ملف، وما فيه إنشاء إعلان أصلاً — لأن الإعلان هو صورته. الرفع يحتاج محاسبة على حصة التخزين غير مطبّقة هنا، وشحنه بدونها يخلي المجتمع يتجاوز ما تدفع خطته مقابله بصمت.
شكلان سيبدوان كأنهما أخطاء
المشاريع تستقبل name وتُرجع title. العمود اسمه name وكل استجابة تسميه title. إرسال title لا يضبط شيئاً والنداء يفشل لغياب name.
ts
const project = await gurb.projects.create({ name: 'مشروع', description: '…' })
project.title // ← the same value, under a different nameإنشاء وسام يعرّفه ولا يمنحه لأحد. المنح يكتب صفوف مستفيدين، ويقدر يسمّي كل عضو في المجتمع في نداء واحد ويُشعر كل واحد منهم. هذا يحتاج مساراً خاصاً به، لا حقلاً في دالة.
awards.create · awards.update · awards.delete
