core.py 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # @Author: Bachir Soussi Chiadmi <bach>
  4. # @Date: 23-05-2017
  5. # @Email: bachir@figureslibres.io
  6. # @Last modified by: bach
  7. # @Last modified time: 21-04-2017
  8. # @License: GPL-V3
  9. import os, re, shutil, tempfile
  10. # sys,
  11. from PyQt5 import QtCore
  12. from PyQt5.QtCore import QSettings, QCoreApplication
  13. import json
  14. import git
  15. from classes import server, sasscompiler, md2html
  16. class Core():
  17. def __init__(self, parent=None):
  18. # restore previous preferences
  19. self.appcwd = os.getcwd()
  20. self.restorePreferences()
  21. self._mw = False
  22. self.temp = tempfile.mkdtemp()
  23. # print(self.temp)
  24. self.tempcwd = False
  25. # if ther's not current project folder from restorepref
  26. # initaite a new temp project
  27. if(self.cwd == None or not os.path.isdir(self.cwd)):
  28. self.cwd = os.path.join(self.temp, 'cwd')
  29. self.tempcwd = True
  30. self.initnewproject()
  31. self.initDeamons()
  32. else:
  33. self.initDeamons()
  34. head, tail = os.path.split(self.cwd)
  35. print('tail', tail)
  36. self.projectname = tail
  37. self.loadDocSettings()
  38. def initDeamons(self):
  39. self.server = server.Server(self)
  40. self.sasscompiler = sasscompiler.Compiler(self)
  41. self.contentcompiler = md2html.Compiler(self)
  42. @property
  43. def mainwindow(self):
  44. return self.mainwindow
  45. @mainwindow.setter
  46. def mainwindow(self, mw):
  47. if not self._mw:
  48. self._mw = mw
  49. if not self.tempcwd:
  50. self._mw.setWindowTitle("Cascade – "+self.cwd)
  51. def restorePreferences(self):
  52. # print("restorePreferences")
  53. settings = QSettings('FiguresLibres', 'Cascade')
  54. # settings.clear()
  55. # print(settings.allKeys())
  56. self.cwd = settings.value('core/cwd', None)
  57. self.dialog_path = settings.value('core/dialog_path', os.path.expanduser('~'))
  58. self.mw_size = settings.value('mainwindow/size', QtCore.QSize(1024, 768))
  59. self.mw_pos = settings.value('mainwindow/pos', QtCore.QPoint(0, 0))
  60. self.mw_curstack = int(settings.value('mainwindow/curstack', 0))
  61. def savePreferences(self):
  62. # print("savePreferences")
  63. settings = QSettings('FiguresLibres', 'Cascade')
  64. # print(settings.allKeys())
  65. if not self.tempcwd:
  66. settings.setValue('core/cwd', self.cwd)
  67. settings.setValue('core/dialog_path', self.dialog_path)
  68. settings.setValue('mainwindow/size', self._mw.size())
  69. settings.setValue('mainwindow/pos', self._mw.pos())
  70. settings.setValue('mainwindow/curstack', self._mw.mainstack.currentIndex())
  71. def loadDocSettings(self):
  72. self.docsettings = json.loads(open(os.path.join(self.cwd,'.config/docsettings.json')).read())
  73. def recordDocSettings(self,docsettings):
  74. # print("doc settings",docsettings)
  75. for key in docsettings:
  76. self.docsettings[key] = docsettings[key]
  77. jsonfilepath = os.path.join(self.cwd,'.config/docsettings.json')
  78. with open(jsonfilepath, "w") as fp:
  79. json.dump(self.docsettings, fp, ensure_ascii=False, indent="\t")
  80. self.updateScss()
  81. def updateScss(self):
  82. # print(self.docsettings)
  83. sassfilepath = os.path.join(self.cwd,'assets/css/main.scss')
  84. # print(sassfilepath)
  85. sass = open(sassfilepath,"r").read()
  86. # $page-width: mm2pt(180);
  87. sass = re.sub(
  88. r'\$page-width:\smm2pt\([0-9|\.]+\);',
  89. '$page-width: mm2pt('+self.docsettings['pw']+');',
  90. sass)
  91. # $page-height: mm2pt(287);
  92. sass = re.sub(
  93. r'\$page-height:\smm2pt\([0-9|\.]+\);',
  94. '$page-height: mm2pt('+self.docsettings['ph']+');',
  95. sass)
  96. # $page-margin-outside: mm2pt(15);
  97. sass = re.sub(
  98. r'\$page-margin-outside:\smm2pt\([0-9|\.]+\);',
  99. '$page-margin-outside: mm2pt('+self.docsettings['me']+');',
  100. sass)
  101. # $page-margin-inside: mm2pt(7.5);
  102. sass = re.sub(
  103. r'\$page-margin-inside:\smm2pt\([0-9|\.]+\);',
  104. '$page-margin-inside: mm2pt('+self.docsettings['mi']+');',
  105. sass)
  106. # $page-margin-top: mm2pt(10);
  107. sass = re.sub(
  108. r'\$page-margin-top:\smm2pt\([0-9|\.]+\);',
  109. '$page-margin-top: mm2pt('+self.docsettings['mt']+');',
  110. sass)
  111. # $page-margin-bottom: mm2pt(10);
  112. sass = re.sub(
  113. r'\$page-margin-bottom:\smm2pt\([0-9|\.]+\);',
  114. '$page-margin-bottom: mm2pt('+self.docsettings['mb']+');',
  115. sass)
  116. # $crop-size: mm2pt(2);
  117. sass = re.sub(
  118. r'\$crop-size:\smm2pt\([0-9|\.]+\);',
  119. '$crop-size: mm2pt('+self.docsettings['cs']+');',
  120. sass)
  121. # $bleed: mm2pt(3);
  122. sass = re.sub(
  123. r'\$bleed:\smm2pt\([0-9|\.]+\);',
  124. '$bleed: mm2pt('+self.docsettings['bs']+');',
  125. sass)
  126. # $col-number: 9;
  127. sass = re.sub(
  128. r'\$col-number:\smm2pt\([0-9|\.]+\);',
  129. '$col-number: mm2pt('+self.docsettings['cn']+');',
  130. sass)
  131. # $col-gutter: mm2pt(3);
  132. sass = re.sub(
  133. r'\$col-butter:\smm2pt\([0-9|\.]+\);',
  134. '$col-butter: mm2pt('+self.docsettings['cg']+');',
  135. sass)
  136. #
  137. # $row-number: 12;
  138. sass = re.sub(
  139. r'\$row-number:\smm2pt\([0-9|\.]+\);',
  140. '$row-number: mm2pt('+self.docsettings['rn']+');',
  141. sass)
  142. # $row-gutter: mm2pt(4);
  143. sass = re.sub(
  144. r'\$row-butter:\smm2pt\([0-9|\.]+\);',
  145. '$row-butter: mm2pt('+self.docsettings['rg']+');',
  146. sass)
  147. #
  148. # $line-height: mm2pt(4);
  149. sass = re.sub(
  150. r'\$line-height:\smm2pt\([0-9|\.]+\);',
  151. '$line-height: mm2pt('+self.docsettings['lh']+');',
  152. sass)
  153. # print('sass', sass)
  154. open(sassfilepath,"w").write(sass)
  155. self._mw.designstack.webkitview.reload()
  156. def initnewproject(self, cwd = None):
  157. print('initnewproject')
  158. if cwd == None :
  159. cwd = self.cwd
  160. shutil.copytree(os.path.join(self.appcwd,'templates/newproject'), cwd)
  161. self.changeCWD(cwd)
  162. self.loadDocSettings()
  163. # self.docsettings = json.loads(open(os.path.join(cwd,'.config/docsettings.json')).read())
  164. self.summary = json.loads(open(os.path.join(cwd,'.config/summary.json')).read())
  165. self.repository = git.Repo.init(cwd)
  166. self.repository.index.add(['assets','contents','.config'])
  167. self.repository.index.commit("initial commit")
  168. def saveproject(self, cwd = None):
  169. if not cwd == None:
  170. shutil.copytree(self.cwd, cwd)
  171. self.tempcwd = False
  172. self.changeCWD(cwd)
  173. def openproject(self, cwd=None):
  174. if not cwd == None:
  175. self.changeCWD(cwd)
  176. def changeCWD(self, cwd):
  177. if not cwd == self.cwd:
  178. self.cwd = cwd
  179. self.server.reload()
  180. self.sasscompiler.reload()
  181. self.contentcompiler.reload()
  182. if not self.tempcwd:
  183. self._mw.setWindowTitle("Cascade – "+self.cwd)
  184. head, tail = os.path.split(self.cwd)
  185. print('tail', projectname)
  186. self.projectname = tail
  187. self._mw.designstack.refresh()
  188. self._mw.contentstack.refresh()
  189. def quit(self):
  190. self.savePreferences()
  191. shutil.rmtree(self.temp, ignore_errors=True)
  192. QCoreApplication.instance().quit()