بيان مناطق التخزين

على عكس مساحتَي التخزين local وsync، تتطلّب مساحة التخزين على managed أن يتم الإعلان عن تركيبتها على أنّها مخطط JSON والتحقّق منها Chrome بشكل صارم. يجب تخزين هذا المخطط في ملف يُشار إليه بالسمة "managed_schema" لمفتاح البيان "storage" ويوضّح سياسات المؤسسة المتوافقة مع الإضافة.

تشبه السياسات الخيارات الخيارات ولكن يتم ضبطها من قِبل مشرف النظام بدلاً من المستخدم، ما يسمح بتهيئة الإضافة مسبقًا لجميع مستخدمي المؤسسة. يمكنك الاطّلاع على طريقة تعامل Chrome مع السياسات للحصول على أمثلة من متصفّح Chrome نفسه.

بعد تعريف السياسات، يمكن الاطّلاع عليها من واجهة برمجة التطبيقات storage.managed. يرجع الأمر إلى الإضافة في فرض السياسات التي قام المشرف بتهيئتها.

نموذج البيان.json

تشير السمة storage.managed_schema إلى ملف ضمن الإضافة التي تتضمّن مخطط السياسة.

{
  "name": "My enterprise extension",
  "storage": {
    "managed_schema": "schema.json"
  },
  ...
}

بعد ذلك سيحمّل Chrome هذه السياسات من نظام التشغيل الأساسي ومن Google Apps للمستخدمين الذين سجّلوا الدخول. يتم تنشيط الحدث storage.onChanged عند رصد تغيير في السياسة، بما في ذلك عندما لا يكون المتصفّح قيد التشغيل إذا كانت الإضافة تستخدم صفحات الأحداث. يمكنك التحقّق من السياسات التي حمَّلها Chrome في chrome://policy.

تنسيق المخطط

يتطلب تنسيق مخطط JSON بعض المتطلبات الإضافية من Chrome:

  • يجب أن يكون نوع مخطط المستوى الأعلى object.
  • لا يمكن أن يحتوي object ذو المستوى الأعلى على additionalProperties. السمة properties التي تم الإعلان عنها هي السياسات المتعلقة بهذه الإضافة.
  • يجب أن يحتوي كل مخطط على قيمة $ref أو قيمة type واحدة بالضبط.

إذا كان المخطط غير صالح، لن يحمّل Chrome الإضافة وسيوضّح سبب عدم التحقّق من صحة المخطط. في حال عدم توافق إحدى قيم السياسة مع المخطط، لن يتم نشرها من خلال واجهة برمجة التطبيقات storage.managed.

نموذج مخطط

{
  "type": "object",

  // "properties" maps an optional key of this object to its schema. At the
  // top-level object, these keys are the policy names supported.
  "properties": {

    // The policy name "AutoSave" is mapped to its schema, which in this case
    // declares it as a simple boolean value.
    // "title" and "description" are optional and are used to show a
    // user-friendly name and documentation to the administrator.
    "AutoSave": {
      "title": "Automatically save changes.",
      "description": "If set to true then changes will be automatically saved.",
      "type": "boolean"
    },

    // Other simple types supported include "integer", "string" and "number".
    "PollRefreshRate": {
      "type": "integer"
    },

    "DefaultServiceUrl": {
      "type": "string"
    },

    // "array" is a list of items that conform to another schema, described
    // in "items". An example to this schema is [ "one", "two" ].
    "ServiceUrls": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },

    // A more complex example that describes a list of bookmarks. Each bookmark
    // has a "title", and can have a "url" or a list of "children" bookmarks.
    // The "id" attribute is used to name a schema, and other schemas can reuse
    // it using the "$ref" attribute.
    "Bookmarks": {
      "type": "array",
      "id": "ListOfBookmarks",
      "items": {
        "type": "object",
        "properties": {
          "title": { "type": "string" },
          "url": { "type": "string" },
          "children": { "$ref": "ListOfBookmarks" }
        }
      }
    },

    // An "object" can have known properties listed as "properties", and can
    // optionally have "additionalProperties" indicating a schema to apply to
    // keys that aren't found in "properties".
    // This example policy could map a URL to its settings. An example value:
    // {
    //   "youtube.com": {
    //     "blocklisted": true
    //   },
    //   "google.com": {
    //     "bypass_proxy": true
    //   }
    // }
    "SettingsForUrls": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "blocklisted": { "type": "boolean" },
          "bypass_proxy": { "type": "boolean" }
        }
      }
    }
  }
}